Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-04-24 15:02:12 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-04-24 15:02:12 +0300
commit36f032ef15397f383c49b0e656bb36cd43492a1b (patch)
tree040ae41a6ddf6ea6151ba0e558ed9047ea565b20 /net
parent2019cdb8cb797f3b86c730064748b203654055ad (diff)
Configure crate-type to cdylib/rlib consistently in Cargo.toml
And not in the source code, it's a build decision.
Diffstat (limited to 'net')
-rw-r--r--net/reqwest/src/lib.rs2
-rw-r--r--net/rusoto/src/lib.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/net/reqwest/src/lib.rs b/net/reqwest/src/lib.rs
index 7960329b9..f7bc6ce61 100644
--- a/net/reqwest/src/lib.rs
+++ b/net/reqwest/src/lib.rs
@@ -6,8 +6,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-#![crate_type = "cdylib"]
-
#[macro_use]
extern crate glib;
#[macro_use]
diff --git a/net/rusoto/src/lib.rs b/net/rusoto/src/lib.rs
index 245e9626d..aaeabc9e4 100644
--- a/net/rusoto/src/lib.rs
+++ b/net/rusoto/src/lib.rs
@@ -6,8 +6,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-#![crate_type = "cdylib"]
-
#[macro_use]
extern crate glib;
#[macro_use]