mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 17:41:05 +00:00
Fix futures
crate not being pulled with feature dox
When feature `dox` is selected but not `futures`, the `futures` crate is not available as a dependency leading to a "can't find crate for `futures`" error.
This commit is contained in:
parent
93442e94dd
commit
88a68dff3e
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ v1_10 = ["gstreamer-sys/v1_10"]
|
|||
v1_12 = ["gstreamer-sys/v1_12", "v1_10"]
|
||||
embed-lgpl-docs = ["rustdoc-stripper"]
|
||||
purge-lgpl-docs = ["rustdoc-stripper"]
|
||||
dox = ["gstreamer-sys/dox", "glib/dox"]
|
||||
dox = ["gstreamer-sys/dox", "glib/dox", "futures"]
|
||||
default-features = []
|
||||
|
||||
[badges]
|
||||
|
|
Loading…
Reference in a new issue