|
1 | 1 | [package]
|
2 | 2 | name = "futures"
|
3 | 3 | edition = "2018"
|
4 |
| -version = "0.3.12" |
| 4 | +version = "0.4.0-alpha.0" |
5 | 5 | authors = [ "Alex Crichton <[email protected]>"]
|
6 | 6 | license = "MIT OR Apache-2.0"
|
7 | 7 | readme = "../README.md"
|
8 | 8 | keywords = ["futures", "async", "future"]
|
9 | 9 | repository = "https://github.com/rust-lang/futures-rs"
|
10 | 10 | homepage = "https://rust-lang.github.io/futures-rs"
|
11 |
| -documentation = "https://docs.rs/futures/0.3" |
| 11 | +documentation = "https://docs.rs/futures/0.4.0-alpha.0" |
12 | 12 | description = """
|
13 | 13 | An implementation of futures and streams featuring zero allocations,
|
14 | 14 | composability, and iterator-like interfaces.
|
15 | 15 | """
|
16 | 16 | categories = ["asynchronous"]
|
17 | 17 |
|
18 | 18 | [dependencies]
|
19 |
| -futures-core = { path = "../futures-core", version = "0.3.12", default-features = false } |
20 |
| -futures-task = { path = "../futures-task", version = "0.3.12", default-features = false } |
21 |
| -futures-channel = { path = "../futures-channel", version = "0.3.12", default-features = false, features = ["sink"] } |
22 |
| -futures-executor = { path = "../futures-executor", version = "0.3.12", default-features = false, optional = true } |
| 19 | +futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false } |
| 20 | +futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false } |
| 21 | +futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] } |
| 22 | +futures-executor = { path = "../futures-executor", version = "=0.4.0-alpha.0", default-features = false, optional = true } |
23 | 23 | futures-io = { path = "../futures-io", version = "0.3.12", default-features = false }
|
24 |
| -futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false } |
25 |
| -futures-util = { path = "../futures-util", version = "0.3.12", default-features = false, features = ["sink"] } |
| 24 | +futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false } |
| 25 | +futures-util = { path = "../futures-util", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] } |
26 | 26 |
|
27 | 27 | [dev-dependencies]
|
28 | 28 | futures-executor = { path = "../futures-executor", features = ["thread-pool"] }
|
|
0 commit comments