Skip to content

Commit

Permalink
Update futures to 0.3.1
Browse files Browse the repository at this point in the history
- SpawnExt should take &self as their base traits
rust-lang/futures-rs#1959
  • Loading branch information
martell committed Nov 21, 2019
1 parent d88846c commit 31c474a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
tokio-util = { version = "=0.2.0-alpha.6", path = "../tokio-util" }

bytes = { git = "https://github.com/tokio-rs/bytes" }
futures = "0.3.0"
futures = "0.3.1"

[[example]]
name = "chat"
Expand Down
2 changes: 1 addition & 1 deletion tests-integration/Cargo.toml
Expand Up @@ -11,4 +11,4 @@ publish = false
tokio = { path = "../tokio" }
tokio-test = { path = "../tokio-test" }

futures = { version = "0.3.0", features = ["async-await"] }
futures = { version = "0.3.1", features = ["async-await"] }
4 changes: 2 additions & 2 deletions tokio-test/Cargo.toml
Expand Up @@ -23,10 +23,10 @@ categories = ["asynchronous", "testing"]
tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["test-util"] }

bytes = { git = "https://github.com/tokio-rs/bytes" }
futures-core = "0.3.0"
futures-core = "0.3.1"

[dev-dependencies]
futures-util = "0.3.0"
futures-util = "0.3.1"

[package.metadata.docs.rs]
all-features = true
2 changes: 1 addition & 1 deletion tokio-tls/Cargo.toml
Expand Up @@ -31,7 +31,7 @@ tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
[dev-dependencies]
cfg-if = "0.1"
env_logger = { version = "0.6", default-features = false }
futures = { version = "0.3.0", features = ["async-await"] }
futures = { version = "0.3.1", features = ["async-await"] }

[target.'cfg(all(not(target_os = "macos"), not(windows), not(target_os = "ios")))'.dev-dependencies]
openssl = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions tokio-util/Cargo.toml
Expand Up @@ -23,16 +23,16 @@ categories = ["asynchronous"]
tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }

bytes = { git = "https://github.com/tokio-rs/bytes" }
futures-core = "0.3.0"
futures-sink = "0.3.0"
futures-core = "0.3.1"
futures-sink = "0.3.1"
log = "0.4"
pin-project-lite = "0.1.1"

[dev-dependencies]
tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" }

futures = "0.3.0"
futures = "0.3.1"

[package.metadata.docs.rs]
all-features = true
4 changes: 2 additions & 2 deletions tokio/Cargo.toml
Expand Up @@ -96,7 +96,7 @@ pin-project-lite = "0.1.1"

# Everything else is optional...
fnv = { version = "1.0.6", optional = true }
futures-core = { version = "0.3.0", optional = true }
futures-core = { version = "0.3.1", optional = true }
lazy_static = { version = "1.0.2", optional = true }
memchr = { version = "2.2", optional = true }
mio = { version = "0.6.14", optional = true }
Expand All @@ -119,7 +119,7 @@ optional = true

[dev-dependencies]
tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" }
futures = { version = "0.3.0", features = ["async-await"] }
futures = { version = "0.3.1", features = ["async-await"] }
loom = { version = "0.2.13", features = ["futures", "checkpoint"] }
proptest = "0.9.4"
tempfile = "3.1.0"
Expand Down

0 comments on commit 31c474a

Please sign in to comment.