aboutsummaryrefslogtreecommitdiff
path: root/embassy-time/Cargo.toml
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2024-12-16 18:08:19 +0100
committerDániel Buga <[email protected]>2024-12-16 19:22:22 +0100
commit3c121e5425e0a1901c459d27e3e5929f86d0a206 (patch)
tree39c8c1ff1a5aeaa0c62100880b5d9966866a630f /embassy-time/Cargo.toml
parentd3f0294fb12e060c4a3ba557ff95766d1c3686e0 (diff)
Remove special handling of integrated timer queue
Diffstat (limited to 'embassy-time/Cargo.toml')
-rw-r--r--embassy-time/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml
index e3074119f..4f4ea0b14 100644
--- a/embassy-time/Cargo.toml
+++ b/embassy-time/Cargo.toml
@@ -24,8 +24,8 @@ target = "x86_64-unknown-linux-gnu"
24features = ["defmt", "std"] 24features = ["defmt", "std"]
25 25
26[features] 26[features]
27std = ["tick-hz-1_000_000", "critical-section/std"] 27std = ["tick-hz-1_000_000", "critical-section/std", "dep:embassy-time-queue-driver"]
28wasm = ["dep:wasm-bindgen", "dep:js-sys", "dep:wasm-timer", "tick-hz-1_000_000"] 28wasm = ["dep:wasm-bindgen", "dep:js-sys", "dep:wasm-timer", "tick-hz-1_000_000", "dep:embassy-time-queue-driver"]
29 29
30## Display the time since startup next to defmt log messages. 30## Display the time since startup next to defmt log messages.
31## At most 1 `defmt-timestamp-uptime-*` feature can be used. 31## At most 1 `defmt-timestamp-uptime-*` feature can be used.
@@ -40,7 +40,7 @@ defmt-timestamp-uptime-tms = ["defmt"]
40defmt-timestamp-uptime-tus = ["defmt"] 40defmt-timestamp-uptime-tus = ["defmt"]
41 41
42## Create a `MockDriver` that can be manually advanced for testing purposes. 42## Create a `MockDriver` that can be manually advanced for testing purposes.
43mock-driver = ["tick-hz-1_000_000"] 43mock-driver = ["tick-hz-1_000_000", "dep:embassy-time-queue-driver"]
44 44
45#! ### Tick Rate 45#! ### Tick Rate
46#! 46#!
@@ -384,7 +384,7 @@ tick-hz-5_242_880_000 = ["embassy-time-driver/tick-hz-5_242_880_000"]
384 384
385[dependencies] 385[dependencies]
386embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver" } 386embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver" }
387embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver" } 387embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true}
388 388
389defmt = { version = "0.3", optional = true } 389defmt = { version = "0.3", optional = true }
390log = { version = "0.4.14", optional = true } 390log = { version = "0.4.14", optional = true }