aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Jamison <[email protected]>2024-08-10 17:39:33 -0400
committerCaleb Jamison <[email protected]>2024-08-10 17:39:33 -0400
commit0d41566c245d6e4cf5359b237b61b578f81a0524 (patch)
tree4b7362aa3e4ca164a0ea117b10825d310ff9e392
parent9a863f07fe97f59c3e6a1d5aa125ed3b4094156f (diff)
Switch to embassy's rp-pac repo, also use a patch.
-rw-r--r--embassy-rp/Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 6a504335d..2e821f4a0 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -124,7 +124,7 @@ embedded-storage-async = { version = "0.4.1" }
124rand_core = "0.6.4" 124rand_core = "0.6.4"
125fixed = "1.23.1" 125fixed = "1.23.1"
126 126
127rp-pac = { git = "https://github.com/CBJamo/rp-pac.git", feature = ["rt"] } 127rp-pac = { version = "6.0.0", feature = ["rt"] }
128 128
129embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] } 129embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] }
130embedded-hal-1 = { package = "embedded-hal", version = "1.0" } 130embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
@@ -140,3 +140,6 @@ sha2-const-stable = "0.1"
140[dev-dependencies] 140[dev-dependencies]
141embassy-executor = { version = "0.6.0", path = "../embassy-executor", features = ["arch-std", "executor-thread"] } 141embassy-executor = { version = "0.6.0", path = "../embassy-executor", features = ["arch-std", "executor-thread"] }
142static_cell = { version = "2" } 142static_cell = { version = "2" }
143
144[patch.crates-io]
145rp-pac = { git = "https://github.com/embassy-rs/rp-pac.git" }