aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/Cargo.toml
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-10-22 07:52:03 +0000
committerGitHub <[email protected]>2024-10-22 07:52:03 +0000
commit0c22d4cccb6efa2e18db52f0df8333dda7ee3abe (patch)
tree3db87587d61b58a41b9f70d3b1cdd5b5ececec8d /embassy-rp/Cargo.toml
parent6da53f082fadb888f8cd909618ba57d207e80715 (diff)
parent548f11d5aef37d5ab1edac6970ceb7bee4300f4f (diff)
Merge pull request #3433 from 1-rafael-1/rp-pwm-embedded-hal-traits
embassy_rp: implement pwm traits from embedded_hal
Diffstat (limited to 'embassy-rp/Cargo.toml')
-rw-r--r--embassy-rp/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 547d64e43..3e61641ff 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -118,18 +118,18 @@ embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" }
118atomic-polyfill = "1.0.1" 118atomic-polyfill = "1.0.1"
119defmt = { version = "0.3", optional = true } 119defmt = { version = "0.3", optional = true }
120log = { version = "0.4.14", optional = true } 120log = { version = "0.4.14", optional = true }
121nb = "1.0.0" 121nb = "1.1.0"
122cfg-if = "1.0.0" 122cfg-if = "1.0.0"
123cortex-m-rt = ">=0.6.15,<0.8" 123cortex-m-rt = ">=0.6.15,<0.8"
124cortex-m = "0.7.6" 124cortex-m = "0.7.6"
125critical-section = "1.1" 125critical-section = "1.2.0"
126chrono = { version = "0.4", default-features = false, optional = true } 126chrono = { version = "0.4", default-features = false, optional = true }
127embedded-io = { version = "0.6.1" } 127embedded-io = { version = "0.6.1" }
128embedded-io-async = { version = "0.6.1" } 128embedded-io-async = { version = "0.6.1" }
129embedded-storage = { version = "0.3" } 129embedded-storage = { version = "0.3" }
130embedded-storage-async = { version = "0.4.1" } 130embedded-storage-async = { version = "0.4.1" }
131rand_core = "0.6.4" 131rand_core = "0.6.4"
132fixed = "1.23.1" 132fixed = "1.28.0"
133 133
134rp-pac = { git = "https://github.com/embassy-rs/rp-pac.git", rev = "a7f42d25517f7124ad3b4ed492dec8b0f50a0e6c", feature = ["rt"] } 134rp-pac = { git = "https://github.com/embassy-rs/rp-pac.git", rev = "a7f42d25517f7124ad3b4ed492dec8b0f50a0e6c", feature = ["rt"] }
135 135
@@ -141,7 +141,7 @@ embedded-hal-nb = { version = "1.0" }
141pio-proc = {version= "0.2" } 141pio-proc = {version= "0.2" }
142pio = {version= "0.2.1" } 142pio = {version= "0.2.1" }
143rp2040-boot2 = "0.3" 143rp2040-boot2 = "0.3"
144document-features = "0.2.7" 144document-features = "0.2.10"
145sha2-const-stable = "0.1" 145sha2-const-stable = "0.1"
146rp-binary-info = { version = "0.1.0", optional = true } 146rp-binary-info = { version = "0.1.0", optional = true }
147smart-leds = "0.4.0" 147smart-leds = "0.4.0"