gstreamer-rs/gstreamer-gl/sys/Cargo.toml
Simonas Kazlauskas 782d84bede Remove the links annotations
The `links` annotation in `Cargo.toml` is intended to ensure that in the
crate graph there's at most one crate that's an implementation of
some sort concept.

This can make sense in some scenarios, most prominent of which is when
the crate defines `#[no_mangle]` symbols (e.g. by compiling a vendored C
library.) In that situation linking a binary that depends on two
versions of the library cannot work because of colliding symbol names.

There does not appear to be a similar reason to impose such a
restriction on the users of `gstreamer-sys` and similar, however. All of
these crates link to a system library, they do not define any
`#[no_mangle]` symbols nor they vendor and build C libraries as part of
their build process. All they do is linking to a system library.  Most
likely all the different versions of the bindings will link to the exact
same library too.

I haven't seen any global resources that these bindings use to ensure
soundness of the library, either.
2021-08-23 16:56:27 +00:00

65 lines
1.5 KiB
TOML

[build-dependencies]
system-deps = "3"
[dependencies]
libc = "0.2"
[dependencies.glib-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
[dependencies.gobject-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
[dependencies.gstreamer-base-sys]
path = "../../gstreamer-base/sys"
features = ["v1_14"]
[dependencies.gstreamer-sys]
path = "../../gstreamer/sys"
features = ["v1_14"]
[dependencies.gstreamer-video-sys]
path = "../../gstreamer-video/sys"
features = ["v1_14"]
[dev-dependencies]
shell-words = "1.0.0"
tempfile = "3"
[features]
dox = []
v1_16 = []
v1_18 = ["v1_16"]
v1_20 = ["v1_18"]
[lib]
name = "gstreamer_gl_sys"
[package]
authors = ["Sebastian Dröge <sebastian@centricular.com>", "Víctor Manuel Jáquez Leal <vjaquez@igalia.com>"]
build = "build.rs"
description = "FFI bindings to libgstgl-1.0"
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_gl_sys/"
homepage = "https://gstreamer.freedesktop.org"
keywords = ["ffi", "gstreamer", "gnome", "multimedia"]
license = "MIT"
name = "gstreamer-gl-sys"
readme = "README.md"
repository = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
version = "0.18.0"
edition = "2018"
[package.metadata.docs.rs]
features = ["dox"]
[package.metadata.system-deps.gstreamer_gl_1_0]
name = "gstreamer-gl-1.0"
version = "1.14"
[package.metadata.system-deps.gstreamer_gl_1_0.v1_16]
version = "1.16"
[package.metadata.system-deps.gstreamer_gl_1_0.v1_18]
version = "1.18"
[package.metadata.system-deps.gstreamer_gl_1_0.v1_20]
version = "1.19.1"