aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.