1
1
[package ]
2
- name = " futures-channel-preview "
2
+ name = " futures-channel"
3
3
edition = " 2018"
4
- version = " 0.3.0-alpha.19 "
4
+ version = " 0.3.0"
5
5
authors = [
" Alex Crichton <[email protected] >" ]
6
6
license = " MIT OR Apache-2.0"
7
7
repository = " https://github.com/rust-lang-nursery/futures-rs"
8
8
homepage = " https://rust-lang-nursery.github.io/futures-rs"
9
- documentation = " https://docs.rs/futures-channel-preview /0.3.0-alpha.19 "
9
+ documentation = " https://docs.rs/futures-channel/0.3.0"
10
10
description = """
11
11
Channels for asynchronous communication using futures-rs.
12
12
"""
@@ -16,20 +16,20 @@ name = "futures_channel"
16
16
17
17
[features ]
18
18
default = [" std" ]
19
- std = [" alloc" , " futures-core-preview /std" ]
20
- alloc = [" futures-core-preview /alloc" ]
21
- sink = [" futures-sink-preview " ]
19
+ std = [" alloc" , " futures-core/std" ]
20
+ alloc = [" futures-core/alloc" ]
21
+ sink = [" futures-sink" ]
22
22
23
23
# Unstable features
24
24
# These features are outside of the normal semver guarantees and require the
25
25
# `unstable` feature as an explicit opt-in to unstable API.
26
- unstable = [" futures-core-preview /unstable" ]
27
- cfg-target-has-atomic = [" futures-core-preview /cfg-target-has-atomic" ]
26
+ unstable = [" futures-core/unstable" ]
27
+ cfg-target-has-atomic = [" futures-core/cfg-target-has-atomic" ]
28
28
29
29
[dependencies ]
30
- futures-core-preview = { path = " ../futures-core" , version = " = 0.3.0-alpha.19 " , default-features = false }
31
- futures-sink-preview = { path = " ../futures-sink" , version = " = 0.3.0-alpha.19 " , default-features = false , optional = true }
30
+ futures-core = { path = " ../futures-core" , version = " 0.3.0" , default-features = false }
31
+ futures-sink = { path = " ../futures-sink" , version = " 0.3.0" , default-features = false , optional = true }
32
32
33
33
[dev-dependencies ]
34
- futures-preview = { path = " ../futures" , version = " = 0.3.0-alpha.19 " , default-features = true }
35
- futures-test-preview = { path = " ../futures-test" , version = " = 0.3.0-alpha.19 " , default-features = true }
34
+ futures = { path = " ../futures" , version = " 0.3.0" , default-features = true }
35
+ futures-test = { path = " ../futures-test" , version = " 0.3.0" , default-features = true }
0 commit comments