aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-adin1110/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-26 17:38:34 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-09 23:37:14 +0100
commitc9ac39df9451e79958c5b9f40b9c8c982d10c241 (patch)
tree72d07efe36fa9df91ba5f4214c5fe5a833d120c7 /embassy-net-adin1110/Cargo.toml
parent49ee0564ed715edfc1c86c8cced57fd488f5c52a (diff)
Update embedded-hal to v1.0
Diffstat (limited to 'embassy-net-adin1110/Cargo.toml')
-rw-r--r--embassy-net-adin1110/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/embassy-net-adin1110/Cargo.toml b/embassy-net-adin1110/Cargo.toml
index f1be52da5..52b89fce9 100644
--- a/embassy-net-adin1110/Cargo.toml
+++ b/embassy-net-adin1110/Cargo.toml
@@ -12,16 +12,16 @@ repository = "https://github.com/embassy-rs/embassy"
12heapless = "0.8" 12heapless = "0.8"
13defmt = { version = "0.3", optional = true } 13defmt = { version = "0.3", optional = true }
14log = { version = "0.4", default-features = false, optional = true } 14log = { version = "0.4", default-features = false, optional = true }
15embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.3" } 15embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
16embedded-hal-async = { version = "=1.0.0-rc.3" } 16embedded-hal-async = { version = "1.0" }
17embedded-hal-bus = { version = "=0.1.0-rc.3", features = ["async"] } 17embedded-hal-bus = { version = "0.1", features = ["async"] }
18embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel" } 18embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel" }
19embassy-time = { version = "0.2", path = "../embassy-time" } 19embassy-time = { version = "0.2", path = "../embassy-time" }
20embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 20embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
21bitfield = "0.14.0" 21bitfield = "0.14.0"
22 22
23[dev-dependencies] 23[dev-dependencies]
24embedded-hal-mock = { version = "0.10.0-rc.4", features = ["embedded-hal-async", "eh1"] } 24embedded-hal-mock = { git = "https://github.com/Dirbaio/embedded-hal-mock", rev = "e3c820094ea0fc71449916bd790d0e3d76f4c0e4", features = ["embedded-hal-async", "eh1"] }
25crc = "3.0.1" 25crc = "3.0.1"
26env_logger = "0.10" 26env_logger = "0.10"
27critical-section = { version = "1.1.2", features = ["std"] } 27critical-section = { version = "1.1.2", features = ["std"] }