aboutsummaryrefslogtreecommitdiff
path: root/embassy-nxp/Cargo.toml
diff options
context:
space:
mode:
authorRoi Bachynskyi <[email protected]>2025-08-30 14:25:25 +0300
committerRoi Bachynskyi <[email protected]>2025-09-12 11:07:02 +0300
commit19bb3668669710dbd1d17dc5fb0dee6d915f012e (patch)
tree73e04c1468a4d85e69d9d3623b33c79c44dff015 /embassy-nxp/Cargo.toml
parent59461ba75ab674073b11f7612627c9e2c6426b93 (diff)
lpc55: gpio rewritten
Diffstat (limited to 'embassy-nxp/Cargo.toml')
-rw-r--r--embassy-nxp/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml
index ab0bfbfd7..c66354ee2 100644
--- a/embassy-nxp/Cargo.toml
+++ b/embassy-nxp/Cargo.toml
@@ -37,13 +37,13 @@ embedded-io = "0.6.1"
37embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] } 37embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] }
38## Chip dependencies 38## Chip dependencies
39lpc55-pac = { version = "0.5.0", optional = true } 39lpc55-pac = { version = "0.5.0", optional = true }
40nxp-pac = { version = "0.1.0", optional = true, git = "https://github.com/i509VCB/nxp-pac", rev = "be4dd0936c20d5897364a381b1d95a99514c1e7e" } 40nxp-pac = { version = "0.1.0", optional = true, git = "https://github.com/IrinaCh524/nxp-pac", rev = "d452e366105012ddd8ba332a9ab86e1931508235" }
41 41
42imxrt-rt = { version = "0.1.7", optional = true, features = ["device"] } 42imxrt-rt = { version = "0.1.7", optional = true, features = ["device"] }
43 43
44[build-dependencies] 44[build-dependencies]
45cfg_aliases = "0.2.1" 45cfg_aliases = "0.2.1"
46nxp-pac = { version = "0.1.0", git = "https://github.com/i509VCB/nxp-pac", rev = "be4dd0936c20d5897364a381b1d95a99514c1e7e", features = ["metadata"], optional = true } 46nxp-pac = { version = "0.1.0", git = "https://github.com/IrinaCh524/nxp-pac", rev = "d452e366105012ddd8ba332a9ab86e1931508235", features = ["metadata"], optional = true }
47proc-macro2 = "1.0.95" 47proc-macro2 = "1.0.95"
48quote = "1.0.15" 48quote = "1.0.15"
49 49
@@ -79,6 +79,6 @@ _rt1xxx = []
79_time_driver = ["dep:embassy-time-driver", "dep:embassy-time-queue-utils"] 79_time_driver = ["dep:embassy-time-driver", "dep:embassy-time-queue-utils"]
80 80
81#! ### Chip selection features 81#! ### Chip selection features
82lpc55 = ["dep:lpc55-pac"] 82lpc55 = ["nxp-pac/lpc55s69_core0"]
83mimxrt1011 = ["nxp-pac/mimxrt1011", "_rt1xxx", "dep:imxrt-rt"] 83mimxrt1011 = ["nxp-pac/mimxrt1011", "_rt1xxx", "dep:imxrt-rt"]
84mimxrt1062 = ["nxp-pac/mimxrt1062", "_rt1xxx", "dep:imxrt-rt"] 84mimxrt1062 = ["nxp-pac/mimxrt1062", "_rt1xxx", "dep:imxrt-rt"]