aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-09-21 01:11:41 +0000
committerGitHub <[email protected]>2024-09-21 01:11:41 +0000
commitafd8a869620f420f9ccae3b40654c4a515b78044 (patch)
tree4d16fd7366014067bda148d93d507280672636d1
parent3020bf36622f9e0603f7b9a2e29070fc7d83f11b (diff)
parent3328c5d6567bb5b1df7ca26d818a91e0740e56c1 (diff)
Merge pull request #3359 from NZRosto/main
Correctly gate `time` feature of embassy-embedded-hal in embassy-stm32
-rw-r--r--embassy-stm32/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 3c6484c96..3f4a5e3c4 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -47,7 +47,7 @@ embassy-time = { version = "0.3.2", path = "../embassy-time", optional = true }
47embassy-time-driver = { version = "0.1", path = "../embassy-time-driver", optional = true } 47embassy-time-driver = { version = "0.1", path = "../embassy-time-driver", optional = true }
48embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 48embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
49embassy-hal-internal = {version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-4"] } 49embassy-hal-internal = {version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-4"] }
50embassy-embedded-hal = {version = "0.2.0", path = "../embassy-embedded-hal" } 50embassy-embedded-hal = {version = "0.2.0", path = "../embassy-embedded-hal", default-features = false }
51embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } 51embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
52embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" } 52embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" }
53embassy-usb-synopsys-otg = {version = "0.1.0", path = "../embassy-usb-synopsys-otg" } 53embassy-usb-synopsys-otg = {version = "0.1.0", path = "../embassy-usb-synopsys-otg" }
@@ -129,7 +129,7 @@ unstable-pac = []
129#! ## Time 129#! ## Time
130 130
131## Enables additional driver features that depend on embassy-time 131## Enables additional driver features that depend on embassy-time
132time = ["dep:embassy-time"] 132time = ["dep:embassy-time", "embassy-embedded-hal/time"]
133 133
134# Features starting with `_` are for internal use only. They're not intended 134# Features starting with `_` are for internal use only. They're not intended
135# to be enabled by other crates, and are not covered by semver guarantees. 135# to be enabled by other crates, and are not covered by semver guarantees.