Skip to content

Commit 6f2d7b8

Browse files
committed
Switch intra-crate deps to exact versions during alpha
1 parent c83d88e commit 6f2d7b8

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ a `#[no_std]` environment, use:
4949

5050
```toml
5151
[dependencies]
52-
futures-preview = { version = "0.3.0-alpha.12", default-features = false }
52+
futures-preview = { version = "=0.3.0-alpha.12", default-features = false }
5353
```
5454

5555
# License

futures-channel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std"]
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
2323

2424
[dev-dependencies]
25-
futures-preview = { path = "../futures", version = "0.3.0-alpha.12", default-features = true }
26-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.12", default-features = true }
25+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12", default-features = true }
26+
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.12", default-features = true }
2727
pin-utils = "0.1.0-alpha.4"

futures-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ nightly = []
2323
either = { version = "1.4", default-features = false, optional = true }
2424

2525
[dev-dependencies]
26-
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
26+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }

futures-executor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futu
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false}
23-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.12", default-features = false}
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false}
22+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false}
23+
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.12", default-features = false}
24+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false}
2525
num_cpus = { version = "1.8.0", optional = true }
2626
lazy_static = { version = "1.1.0", optional = true }
2727
pin-utils = "0.1.0-alpha.4"
2828

2929
[dev-dependencies]
30-
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
31-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12" }
30+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
31+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12" }

futures-io/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std", "iovec"]
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
2323
iovec = { version = "0.1", optional = true }
2424

2525
[dev-dependencies]
26-
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
26+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
2727
assert_matches = "1.3.0"

futures-sink/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ default = ["std"]
2020

2121
[dependencies]
2222
either = { version = "1.4", default-features = false, optional = true }
23-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
23+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
24+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }

futures-util/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ bench = []
2424
nightly = []
2525

2626
[dependencies]
27-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
28-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
29-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.12", default-features = false }
30-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.12", default-features = false}
31-
futures-select-macro-preview = { path = "../futures-select-macro", version = "0.3.0-alpha.12", default-features = false }
27+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
28+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
29+
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
30+
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false}
31+
futures-select-macro-preview = { path = "../futures-select-macro", version = "=0.3.0-alpha.12", default-features = false }
3232
either = { version = "1.4", default-features = false }
3333
proc-macro-hack = "0.5"
3434
proc-macro-nested = "0.1.2"
@@ -40,7 +40,7 @@ tokio-io = { version = "0.1.9", optional = true }
4040
pin-utils = "0.1.0-alpha.4"
4141

4242
[dev-dependencies]
43-
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
44-
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.12" }
45-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.12" }
43+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
44+
futures-executor-preview = { path = "../futures-executor", version = "=0.3.0-alpha.12" }
45+
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.12" }
4646
tokio = "0.1.11"

futures/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" }
2323
appveyor = { repository = "rust-lang-nursery/futures-rs" }
2424

2525
[dependencies]
26-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
27-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
28-
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.12", default-features = false }
29-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.12", default-features = false }
30-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.12", default-features = false }
31-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.12", default-features = false }
26+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
27+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
28+
futures-executor-preview = { path = "../futures-executor", version = "=0.3.0-alpha.12", default-features = false }
29+
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
30+
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false }
31+
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.12", default-features = false }
3232

3333
[dev-dependencies]
3434
pin-utils = "0.1.0-alpha.4"
35-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.12" }
35+
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.12" }
3636
tokio = "0.1.11"
3737

3838
[features]

0 commit comments

Comments
 (0)