Skip to content

Commit

Permalink
Switch intra-crate deps to exact versions during alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Jan 15, 2019
1 parent c83d88e commit 6f2d7b8
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ a `#[no_std]` environment, use:

```toml
[dependencies]
futures-preview = { version = "0.3.0-alpha.12", default-features = false }
futures-preview = { version = "=0.3.0-alpha.12", default-features = false }
```

# License
Expand Down
6 changes: 3 additions & 3 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ std = ["futures-core-preview/std"]
default = ["std"]

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

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.12", default-features = true }
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.12", default-features = true }
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12", default-features = true }
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.12", default-features = true }
pin-utils = "0.1.0-alpha.4"
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ nightly = []
either = { version = "1.4", default-features = false, optional = true }

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
10 changes: 5 additions & 5 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futu
default = ["std"]

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false}
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.12", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false}
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false}
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.12", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false}
num_cpus = { version = "1.8.0", optional = true }
lazy_static = { version = "1.1.0", optional = true }
pin-utils = "0.1.0-alpha.4"

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12" }
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12" }
4 changes: 2 additions & 2 deletions futures-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ std = ["futures-core-preview/std", "iovec"]
default = ["std"]

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

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
assert_matches = "1.3.0"
4 changes: 2 additions & 2 deletions futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ default = ["std"]

[dependencies]
either = { version = "1.4", default-features = false, optional = true }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
16 changes: 8 additions & 8 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ bench = []
nightly = []

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.12", default-features = false}
futures-select-macro-preview = { path = "../futures-select-macro", version = "0.3.0-alpha.12", default-features = false }
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false}
futures-select-macro-preview = { path = "../futures-select-macro", version = "=0.3.0-alpha.12", default-features = false }
either = { version = "1.4", default-features = false }
proc-macro-hack = "0.5"
proc-macro-nested = "0.1.2"
Expand All @@ -40,7 +40,7 @@ tokio-io = { version = "0.1.9", optional = true }
pin-utils = "0.1.0-alpha.4"

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.12" }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.12" }
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.12" }
futures-preview = { path = "../futures", version = "=0.3.0-alpha.12" }
futures-executor-preview = { path = "../futures-executor", version = "=0.3.0-alpha.12" }
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.12" }
tokio = "0.1.11"
14 changes: 7 additions & 7 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" }
appveyor = { repository = "rust-lang-nursery/futures-rs" }

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.12", default-features = false }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.12", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.12", default-features = false }
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.12", default-features = false }
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
futures-executor-preview = { path = "../futures-executor", version = "=0.3.0-alpha.12", default-features = false }
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false }
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.12", default-features = false }

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

[features]
Expand Down

0 comments on commit 6f2d7b8

Please sign in to comment.