Skip to content

Commit 6699d7c

Browse files
committed
Remove unneeded cfg-target-has-atomic feature
1 parent 84c2fed commit 6699d7c

File tree

5 files changed

+2
-25
lines changed

5 files changed

+2
-25
lines changed

futures-channel/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ std = ["alloc", "futures-core/std"]
1717
alloc = ["futures-core/alloc"]
1818
sink = ["futures-sink"]
1919

20-
# These features are no longer used.
21-
# TODO: remove in the next major version.
22-
unstable = []
23-
cfg-target-has-atomic = []
24-
2520
[dependencies]
2621
futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false }
2722
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false, optional = true }

futures-core/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ default = ["std"]
1616
std = ["alloc"]
1717
alloc = []
1818

19-
# These features are no longer used.
20-
# TODO: remove in the next major version.
21-
unstable = []
22-
cfg-target-has-atomic = []
23-
2419
[dependencies]
2520

2621
[dev-dependencies]

futures-task/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ default = ["std"]
1616
std = ["alloc"]
1717
alloc = []
1818

19-
# These features are no longer used.
20-
# TODO: remove in the next major version.
21-
unstable = []
22-
cfg-target-has-atomic = []
23-
2419
[dependencies]
2520

2621
[dev-dependencies]

futures-util/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,11 @@ channel = ["std", "futures-channel"]
2626
# Unstable features
2727
# These features are outside of the normal semver guarantees and require the
2828
# `unstable` feature as an explicit opt-in to unstable API.
29-
unstable = ["futures-core/unstable", "futures-task/unstable"]
29+
unstable = []
3030
bilock = []
3131
read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]
3232
write-all-vectored = ["io"]
3333

34-
# These features are no longer used.
35-
# TODO: remove in the next major version.
36-
cfg-target-has-atomic = []
37-
3834
[build-dependencies]
3935
autocfg = "1"
4036

futures/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,11 @@ thread-pool = ["executor", "futures-executor/thread-pool"]
4646
# Unstable features
4747
# These features are outside of the normal semver guarantees and require the
4848
# `unstable` feature as an explicit opt-in to unstable API.
49-
unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-io/unstable", "futures-util/unstable"]
49+
unstable = ["futures-io/unstable", "futures-util/unstable"]
5050
bilock = ["futures-util/bilock"]
5151
read-initializer = ["futures-io/read-initializer", "futures-util/read-initializer"]
5252
write-all-vectored = ["futures-util/write-all-vectored"]
5353

54-
# These features are no longer used.
55-
# TODO: remove in the next major version.
56-
cfg-target-has-atomic = []
57-
5854
[package.metadata.docs.rs]
5955
all-features = true
6056
rustdoc-args = ["--cfg", "docsrs"]

0 commit comments

Comments
 (0)