mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 01:21:05 +00:00
Remove unused dependencies
found by cargo-udeps
This commit is contained in:
parent
fff69b3a23
commit
da5d6df694
2 changed files with 2 additions and 4 deletions
|
@ -17,12 +17,10 @@ bitflags = "1.0"
|
|||
libc = "0.2"
|
||||
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
gio-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
gstreamer-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys", features = ["v1_8"] }
|
||||
gstreamer-rtsp-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys", features = ["v1_8"] }
|
||||
gstreamer-sdp-sys = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs-sys", features = ["v1_8"] }
|
||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||
gio = { git = "https://github.com/gtk-rs/gio" }
|
||||
gstreamer = { path = "../gstreamer" }
|
||||
gstreamer-sdp = { path = "../gstreamer-sdp" }
|
||||
|
||||
|
|
|
@ -11,13 +11,13 @@ gdk = { git = "https://github.com/gtk-rs/gdk", optional = true }
|
|||
gtk = { git = "https://github.com/gtk-rs/gtk", optional = true }
|
||||
gst = { package = "gstreamer", path = "../gstreamer" }
|
||||
gst-audio = { package = "gstreamer-audio", path = "../gstreamer-audio" }
|
||||
gst-video = { package = "gstreamer-video", path = "../gstreamer-video" }
|
||||
gst-video = { package = "gstreamer-video", path = "../gstreamer-video", optional = true }
|
||||
gst-app = { package = "gstreamer-app", path = "../gstreamer-app" }
|
||||
gst-pbutils = { package = "gstreamer-pbutils", path = "../gstreamer-pbutils" }
|
||||
byte-slice-cast = "1"
|
||||
anyhow = "1"
|
||||
|
||||
[features]
|
||||
tutorial5 = ["gtk", "gdk"]
|
||||
tutorial5 = ["gtk", "gdk", "gst-video"]
|
||||
tutorial5-x11 = ["tutorial5"]
|
||||
tutorial5-quartz = ["tutorial5"]
|
||||
|
|
Loading…
Reference in a new issue