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
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 /generic/file/Cargo.toml
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 'generic/file/Cargo.toml')
-rw-r--r--generic/file/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/file/Cargo.toml b/generic/file/Cargo.toml
index 7cbc5fc59..d811ba52e 100644
--- a/generic/file/Cargo.toml
+++ b/generic/file/Cargo.toml
@@ -15,7 +15,7 @@ lazy_static = "1.0"
[lib]
name = "gstrsfile"
-crate-type = ["cdylib"]
+crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]