aboutsummaryrefslogtreecommitdiff
path: root/embassy-net/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-29 17:23:48 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-29 17:26:33 +0100
commitc6989dfbca51787146f50270c671af9db434f577 (patch)
tree5974a8ec41c108d5208e4f68027b918d424a2046 /embassy-net/Cargo.toml
parent384bad7bfaa1f2415baf2cd3b69ebf36dc0a02d7 (diff)
Remove nightly and unstable-traits features in preparation for 1.75.
Diffstat (limited to 'embassy-net/Cargo.toml')
-rw-r--r--embassy-net/Cargo.toml10
1 files changed, 4 insertions, 6 deletions
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml
index fe8344f5b..f106582e8 100644
--- a/embassy-net/Cargo.toml
+++ b/embassy-net/Cargo.toml
@@ -15,11 +15,11 @@ categories = [
15[package.metadata.embassy_docs] 15[package.metadata.embassy_docs]
16src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-v$VERSION/embassy-net/src/" 16src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-v$VERSION/embassy-net/src/"
17src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net/src/" 17src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net/src/"
18features = ["nightly", "defmt", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6", "medium-ethernet", "medium-ip", "medium-ieee802154", "igmp"] 18features = ["defmt", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6", "medium-ethernet", "medium-ip", "medium-ieee802154", "igmp"]
19target = "thumbv7em-none-eabi" 19target = "thumbv7em-none-eabi"
20 20
21[package.metadata.docs.rs] 21[package.metadata.docs.rs]
22features = ["nightly", "defmt", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6", "medium-ethernet", "medium-ip", "medium-ieee802154", "igmp"] 22features = ["defmt", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6", "medium-ethernet", "medium-ip", "medium-ieee802154", "igmp"]
23 23
24[features] 24[features]
25default = [] 25default = []
@@ -27,8 +27,6 @@ std = []
27 27
28defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "heapless/defmt-03"] 28defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "heapless/defmt-03"]
29 29
30nightly = ["dep:embedded-io-async", "dep:embedded-nal-async"]
31
32udp = ["smoltcp/socket-udp"] 30udp = ["smoltcp/socket-udp"]
33tcp = ["smoltcp/socket-tcp"] 31tcp = ["smoltcp/socket-tcp"]
34dns = ["smoltcp/socket-dns", "smoltcp/proto-dns"] 32dns = ["smoltcp/socket-dns", "smoltcp/proto-dns"]
@@ -54,7 +52,7 @@ smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp.git", rev = "b57e2f9e70
54embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } 52embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
55embassy-time = { version = "0.1.5", path = "../embassy-time" } 53embassy-time = { version = "0.1.5", path = "../embassy-time" }
56embassy-sync = { version = "0.4.0", path = "../embassy-sync" } 54embassy-sync = { version = "0.4.0", path = "../embassy-sync" }
57embedded-io-async = { version = "0.6.1", optional = true } 55embedded-io-async = { version = "0.6.1" }
58 56
59managed = { version = "0.8.0", default-features = false, features = [ "map" ] } 57managed = { version = "0.8.0", default-features = false, features = [ "map" ] }
60heapless = { version = "0.8", default-features = false } 58heapless = { version = "0.8", default-features = false }
@@ -63,4 +61,4 @@ generic-array = { version = "0.14.4", default-features = false }
63stable_deref_trait = { version = "1.2.0", default-features = false } 61stable_deref_trait = { version = "1.2.0", default-features = false }
64futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] } 62futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] }
65atomic-pool = "1.0" 63atomic-pool = "1.0"
66embedded-nal-async = { version = "0.7.1", optional = true } 64embedded-nal-async = { version = "0.7.1" }