Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #345 from sdroege/futures-preview
Browse files Browse the repository at this point in the history
Use futures-preview crates instead of futures
  • Loading branch information
GuillaumeGomez committed Jun 27, 2018
2 parents d51bd06 + 6cfa138 commit 18a2ed6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Expand Up @@ -24,11 +24,11 @@ name = "glib"
lazy_static = "1.0"
libc = "0.2"
bitflags = "1.0"
futures-core = { version = "0.2", optional = true }
futures-executor = { version = "0.2", optional = true }
futures-channel = { version = "0.2", optional = true }
futures-util = { version = "0.2", optional = true }
futures-stable = { version = "0.2", optional = true }
futures-core-preview = { version = "0.2", optional = true }
futures-executor-preview = { version = "0.2", optional = true }
futures-channel-preview = { version = "0.2", optional = true }
futures-util-preview = { version = "0.2", optional = true }
futures-stable-preview = { version = "0.2", optional = true }

[dependencies.glib-sys]
version = "0.6.0"
Expand All @@ -52,6 +52,6 @@ v2_48 = ["v2_46", "glib-sys/v2_48"]
v2_50 = ["v2_48", "glib-sys/v2_50"]
v2_52 = ["v2_50", "glib-sys/v2_52"]
v2_54 = ["v2_52", "glib-sys/v2_54", "gobject-sys/v2_54"]
futures = ["futures-core", "futures-executor", "futures-channel", "futures-util", "v2_36"]
futures-nightly = ["futures", "futures-core/nightly", "futures-stable", "futures-stable/nightly"]
futures = ["futures-core-preview", "futures-executor-preview", "futures-channel-preview", "futures-util-preview", "v2_36"]
futures-nightly = ["futures", "futures-core-preview/nightly", "futures-stable-preview", "futures-stable-preview/nightly"]
dox = ["glib-sys/dox", "gobject-sys/dox"]

0 comments on commit 18a2ed6

Please sign in to comment.