aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/Cargo.toml
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-07-06 17:35:19 -0500
committeri509VCB <[email protected]>2025-07-22 11:41:47 -0500
commita1867f0d742f597a25384e4a33209beeec7ec676 (patch)
tree1ec06338700bff8b9e54fe410d1e77377fa2114d /embassy-mspm0/Cargo.toml
parent209b64a80be8047b32d7407ff0d8a4da54236551 (diff)
mspm0: add buffered uart driver
And tests for G3507.
Diffstat (limited to 'embassy-mspm0/Cargo.toml')
-rw-r--r--embassy-mspm0/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-mspm0/Cargo.toml b/embassy-mspm0/Cargo.toml
index d2adc63d7..61afcd76d 100644
--- a/embassy-mspm0/Cargo.toml
+++ b/embassy-mspm0/Cargo.toml
@@ -36,7 +36,10 @@ embassy-embedded-hal = { version = "0.3.1", path = "../embassy-embedded-hal", de
36embassy-executor = { version = "0.7.0", path = "../embassy-executor", optional = true } 36embassy-executor = { version = "0.7.0", path = "../embassy-executor", optional = true }
37 37
38embedded-hal = { version = "1.0" } 38embedded-hal = { version = "1.0" }
39embedded-hal-nb = { version = "1.0" }
39embedded-hal-async = { version = "1.0" } 40embedded-hal-async = { version = "1.0" }
41embedded-io = "0.6.1"
42embedded-io-async = "0.6.1"
40 43
41defmt = { version = "1.0.1", optional = true } 44defmt = { version = "1.0.1", optional = true }
42fixed = "1.29" 45fixed = "1.29"
@@ -51,6 +54,7 @@ mspm0-metapac = { git = "https://github.com/mspm0-rs/mspm0-data-generated/", tag
51[build-dependencies] 54[build-dependencies]
52proc-macro2 = "1.0.94" 55proc-macro2 = "1.0.94"
53quote = "1.0.40" 56quote = "1.0.40"
57cfg_aliases = "0.2.1"
54 58
55# mspm0-metapac = { version = "", default-features = false, features = ["metadata"] } 59# mspm0-metapac = { version = "", default-features = false, features = ["metadata"] }
56mspm0-metapac = { git = "https://github.com/mspm0-rs/mspm0-data-generated/", tag = "mspm0-data-235158ac2865d8aac3a1eceb2d62026eb12bf38f", default-features = false, features = ["metadata"] } 60mspm0-metapac = { git = "https://github.com/mspm0-rs/mspm0-data-generated/", tag = "mspm0-data-235158ac2865d8aac3a1eceb2d62026eb12bf38f", default-features = false, features = ["metadata"] }