Skip to content

Commit

Permalink
Pinpointing futures crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Jan 8, 2021
1 parent 0cc1540 commit dfdd00b
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
heim = { path = "../heim", features = ["full"] }
futures = "~0.3"
futures = "0.3.8"
criterion = "~0.3"
smol = "~1.2"

Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cfg-if = "~1.0"
heim = { path = "../heim", features = ["full"] }
futures-timer = "~3.0"

futures = "~0.3"
futures = "0.3.8"
smol = "~1.2"
tokio = { version = "~0.3", features = ["full"] }
async-std = { version = "~1.7", features = ["attributes"] }
Expand Down
6 changes: 3 additions & 3 deletions heim-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ license = "Apache-2.0 OR MIT"
[dependencies]
libc = "~0.2"
cfg-if = "~1.0"
futures-core = "^0.3"
futures-util = { version = "^0.3", default-features = false }
futures-core = "0.3.8"
futures-util = { version = "0.3.8", default-features = false }
pin-utils = "0.1.0-alpha.4"
uom = { version = "0.30.0", default-features = false, features = ["autoconvert", "f32", "f64", "u64", "si", "std"] }
backtrace = { version = "~0.3", optional = true }
Expand All @@ -31,7 +31,7 @@ mach = "0.3.2"
core-foundation = "~0.9"

[dev-dependencies]
futures-executor = "^0.3"
futures-executor = "0.3.8"
version-sync = "0.9"
static_assertions = "~1.1"

Expand Down
4 changes: 2 additions & 2 deletions heim-cpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = "Apache-2.0 OR MIT"
[dependencies]
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
futures = { version = "~0.3", default-features = false, features = ["std"] }
futures = { version = "0.3.8", default-features = false, features = ["std"] }
lazy_static = "1.3.0"
cfg-if = "~1.0"

Expand Down Expand Up @@ -45,7 +45,7 @@ mach = "0.3.2"
[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
smol = "~1.2"
futures = "~0.3"
futures = "0.3.8"
version-sync = "0.9"
futures-timer = "^3.0"

Expand Down
2 changes: 1 addition & 1 deletion heim-disk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ core-foundation = "~0.9"
[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
smol = "~1.2"
futures = "~0.3"
futures = "0.3.8"
version-sync = "0.9"

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion heim-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ libc = "~0.2"

[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
futures = "~0.3"
futures = "0.3.8"
smol = "~1.2"
version-sync = "0.9"

Expand Down
2 changes: 1 addition & 1 deletion heim-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ nix = "~0.19"
[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
smol = "~1.2"
futures = "~0.3"
futures = "0.3.8"
version-sync = "0.9"

[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions heim-process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ memchr = "^2.2"
async-trait = "~0.1"

[target.'cfg(unix)'.dependencies]
futures = { version = "~0.3", default-features = false }
futures = { version = "0.3.8", default-features = false }

[target.'cfg(target_os = "linux")'.dependencies]
heim-net = { version = "0.1.0-rc.1", path = "../heim-net" }
Expand Down Expand Up @@ -59,7 +59,7 @@ darwin-libproc = "0.2.0"
[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
smol = "~1.2"
futures = { version = "~0.3", default-features = false }
futures = { version = "0.3.8", default-features = false }
futures-timer = "^3.0"
which = { version = "~4.0", default-features = false }
version-sync = "0.9"
Expand Down
3 changes: 1 addition & 2 deletions heim-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ repository = "https://github.com/heim-rs/heim"
license = "Apache-2.0 OR MIT"

[dependencies]
futures = { version = "~0.3", default-features = false, features = ["std"] }
#futures-lite = "~1.11"
futures = { version = "0.3.8", default-features = false, features = ["std"] }
futures-timer = "~3.0"
once_cell = "~1.5"
smol = "~1.2"
Expand Down
2 changes: 1 addition & 1 deletion heim-virt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = "Apache-2.0 OR MIT"
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
cfg-if = "~1.0"
futures = { version = "~0.3", default-features = false, features = ["std", "async-await"] }
futures = { version = "0.3.8", default-features = false, features = ["std", "async-await"] }

[target.'cfg(all(target_os = "linux", any(target_arch="x86", target_arch="x86_64")))'.dependencies]
raw-cpuid = "~8.1"
Expand Down

0 comments on commit dfdd00b

Please sign in to comment.