11[package ]
2- name = " futures-channel-preview "
2+ name = " futures-channel"
33edition = " 2018"
4- version = " 0.3.0-alpha.19 "
4+ version = " 0.3.0"
55authors = [
" Alex Crichton <[email protected] >" ]
66license = " MIT OR Apache-2.0"
77repository = " https://github.com/rust-lang-nursery/futures-rs"
88homepage = " 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"
1010description = """
1111Channels for asynchronous communication using futures-rs.
1212"""
@@ -16,20 +16,20 @@ name = "futures_channel"
1616
1717[features ]
1818default = [" 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" ]
2222
2323# Unstable features
2424# These features are outside of the normal semver guarantees and require the
2525# `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" ]
2828
2929[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 }
3232
3333[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