gst-plugins-rs/net/reqwest/src/lib.rs

36 lines
960 B
Rust
Raw Normal View History

// Copyright (C) 2016-2017 Sebastian Dröge <sebastian@centricular.com>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
2022-03-14 08:22:53 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
#![allow(clippy::non_send_fields_in_send_ty)]
/**
* plugin-reqwest:
*
* Since: plugins-rs-0.1.0
*/
2021-06-03 18:20:54 +00:00
use gst::glib;
2019-06-26 04:40:21 +00:00
mod reqwesthttpsrc;
2018-11-04 18:46:07 +00:00
fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
2019-06-26 04:40:21 +00:00
reqwesthttpsrc::register(plugin)
}
2020-12-20 18:43:45 +00:00
gst::plugin_define!(
reqwest,
env!("CARGO_PKG_DESCRIPTION"),
2017-07-31 13:36:35 +00:00
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
"MIT/X11",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_REPOSITORY"),
env!("BUILD_REL_DATE")
2017-07-31 13:36:35 +00:00
);