aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cda340d02..96b7d6b0f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,8 @@ categories = ["embedded", "hardware-support", "no-std"]
9 9
10[dependencies] 10[dependencies]
11cortex-m = { version = "0.7", features = ["critical-section-single-core"] } 11cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
12cortex-m-rt = { version = "0.7" } 12# If you would like "device" to be an optional feature, please open an issue.
13cortex-m-rt = { version = "0.7", features = ["device"] }
13critical-section = "1.2.0" 14critical-section = "1.2.0"
14defmt = { version = "1.0", optional = true } 15defmt = { version = "1.0", optional = true }
15embassy-embedded-hal = "0.5.0" 16embassy-embedded-hal = "0.5.0"
@@ -25,6 +26,7 @@ heapless = "0.8"
25mcxa-pac = { git = "https://github.com/OpenDevicePartnership/mcxa-pac", features = ["rt", "critical-section"], version = "0.1.0" } 26mcxa-pac = { git = "https://github.com/OpenDevicePartnership/mcxa-pac", features = ["rt", "critical-section"], version = "0.1.0" }
26nb = "1.1.0" 27nb = "1.1.0"
27paste = "1.0.15" 28paste = "1.0.15"
29maitake-sync = { version = "0.2.2", default-features = false, features = ["critical-section", "no-cache-pad"] }
28 30
29# `time` dependencies 31# `time` dependencies
30embassy-time = { version = "0.5.0", optional = true } 32embassy-time = { version = "0.5.0", optional = true }
@@ -37,8 +39,6 @@ default = []
37# Use with one logger feature: defmt-rtt (preferred) or defmt-uart (fallback) 39# Use with one logger feature: defmt-rtt (preferred) or defmt-uart (fallback)
38defmt = ["dep:defmt", "mcxa-pac/defmt"] 40defmt = ["dep:defmt", "mcxa-pac/defmt"]
39 41
40rt = ["cortex-m-rt/device"]
41
42unstable-pac = [] 42unstable-pac = []
43 43
44# Embassy time 44# Embassy time