diff options
| -rw-r--r-- | embassy-nrf/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-rp/Cargo.toml | 4 | ||||
| -rw-r--r-- | embassy-stm32/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/rp/Cargo.toml | 3 | ||||
| -rw-r--r-- | examples/stm32f0/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32f4/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32h7/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/stm32wb55/Cargo.toml | 2 | ||||
| -rw-r--r-- | stm32-metapac/Cargo.toml | 2 |
9 files changed, 10 insertions, 11 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index c76e5171f..7a6963f9b 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -34,7 +34,7 @@ embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } | |||
| 34 | 34 | ||
| 35 | defmt = { version = "0.2.0", optional = true } | 35 | defmt = { version = "0.2.0", optional = true } |
| 36 | log = { version = "0.4.11", optional = true } | 36 | log = { version = "0.4.11", optional = true } |
| 37 | cortex-m-rt = "0.6.13" | 37 | cortex-m-rt = ">=0.6.15,<0.8" |
| 38 | cortex-m = "0.7.1" | 38 | cortex-m = "0.7.1" |
| 39 | embedded-hal = { version = "0.2.4" } | 39 | embedded-hal = { version = "0.2.4" } |
| 40 | embedded-dma = { version = "0.1.2" } | 40 | embedded-dma = { version = "0.1.2" } |
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 5f0784071..3702404b8 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml | |||
| @@ -25,10 +25,10 @@ embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["r | |||
| 25 | atomic-polyfill = { version = "0.1.2" } | 25 | atomic-polyfill = { version = "0.1.2" } |
| 26 | defmt = { version = "0.2.0", optional = true } | 26 | defmt = { version = "0.2.0", optional = true } |
| 27 | log = { version = "0.4.11", optional = true } | 27 | log = { version = "0.4.11", optional = true } |
| 28 | cortex-m-rt = "0.6.13" | 28 | cortex-m-rt = ">=0.6.15,<0.8" |
| 29 | cortex-m = "0.7.1" | 29 | cortex-m = "0.7.1" |
| 30 | critical-section = "0.2.1" | 30 | critical-section = "0.2.1" |
| 31 | 31 | ||
| 32 | rp2040-pac2 = { git = "https://github.com/embassy-rs/rp2040-pac2", rev="2ce29ba58ad904d3995ce65bb46807e853f1fbf9", features = ["rt"] } | 32 | rp2040-pac2 = { git = "https://github.com/embassy-rs/rp2040-pac2", rev="9ad7223a48a065e612bc7dc7be5bf5bd0b41cfc4", features = ["rt"] } |
| 33 | #rp2040-pac2 = { path = "../../rp/rp2040-pac2", features = ["rt"] } | 33 | #rp2040-pac2 = { path = "../../rp/rp2040-pac2", features = ["rt"] } |
| 34 | embedded-hal = { version = "0.2.4", features = [ "unproven" ] } | 34 | embedded-hal = { version = "0.2.4", features = [ "unproven" ] } |
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index e0c16b46c..38cc12d16 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -14,7 +14,7 @@ embassy-net = { version = "0.1.0", path = "../embassy-net", default-features = f | |||
| 14 | 14 | ||
| 15 | defmt = { version = "0.2.0", optional = true } | 15 | defmt = { version = "0.2.0", optional = true } |
| 16 | log = { version = "0.4.11", optional = true } | 16 | log = { version = "0.4.11", optional = true } |
| 17 | cortex-m-rt = { version = "0.6.13", features = ["device"] } | 17 | cortex-m-rt = ">=0.6.15,<0.8" |
| 18 | cortex-m = "0.7.1" | 18 | cortex-m = "0.7.1" |
| 19 | embedded-hal = { version = "0.2.4", features = ["unproven"] } | 19 | embedded-hal = { version = "0.2.4", features = ["unproven"] } |
| 20 | futures = { version = "0.3.5", default-features = false, features = ["async-await"] } | 20 | futures = { version = "0.3.5", default-features = false, features = ["async-await"] } |
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml index 4c4f983fc..db222e071 100644 --- a/examples/rp/Cargo.toml +++ b/examples/rp/Cargo.toml | |||
| @@ -19,14 +19,13 @@ defmt-error = [] | |||
| 19 | [dependencies] | 19 | [dependencies] |
| 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } | 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } |
| 21 | embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] } | 21 | embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] } |
| 22 | rp2040-pac2 = { git = "https://github.com/embassy-rs/rp2040-pac2", rev="e8635fd05f43b6c21ec462fb8c06140e1fb26961" } | ||
| 23 | atomic-polyfill = { version = "0.1.1" } | 22 | atomic-polyfill = { version = "0.1.1" } |
| 24 | 23 | ||
| 25 | defmt = "0.2.0" | 24 | defmt = "0.2.0" |
| 26 | defmt-rtt = "0.2.0" | 25 | defmt-rtt = "0.2.0" |
| 27 | 26 | ||
| 28 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 27 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } |
| 29 | cortex-m-rt = "0.6.13" | 28 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 29 | embedded-hal = { version = "0.2.4" } |
| 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } | 31 | futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } |
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml index c5730de80..d37391e4f 100644 --- a/examples/stm32f0/Cargo.toml +++ b/examples/stm32f0/Cargo.toml | |||
| @@ -9,7 +9,7 @@ resolver = "2" | |||
| 9 | 9 | ||
| 10 | [dependencies] | 10 | [dependencies] |
| 11 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 11 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } |
| 12 | cortex-m-rt = "0.6.13" | 12 | cortex-m-rt = "0.7.0" |
| 13 | defmt = "0.2.0" | 13 | defmt = "0.2.0" |
| 14 | defmt-rtt = "0.2.0" | 14 | defmt-rtt = "0.2.0" |
| 15 | panic-probe = { version = "0.2.0" } | 15 | panic-probe = { version = "0.2.0" } |
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index 95c8441d9..8a7f45877 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml | |||
| @@ -26,7 +26,7 @@ defmt = "0.2.0" | |||
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.1" |
| 29 | cortex-m-rt = "0.6.14" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = { version = "0.2.4" } |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } |
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 9cacd4aaa..1370cd9ab 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml | |||
| @@ -28,7 +28,7 @@ defmt = "0.2.0" | |||
| 28 | defmt-rtt = "0.2.0" | 28 | defmt-rtt = "0.2.0" |
| 29 | 29 | ||
| 30 | cortex-m = "0.7.1" | 30 | cortex-m = "0.7.1" |
| 31 | cortex-m-rt = "0.6.14" | 31 | cortex-m-rt = "0.7.0" |
| 32 | embedded-hal = { version = "0.2.4" } | 32 | embedded-hal = { version = "0.2.4" } |
| 33 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 33 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } |
| 34 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 34 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } |
diff --git a/examples/stm32wb55/Cargo.toml b/examples/stm32wb55/Cargo.toml index ee2432cb2..c12e489f7 100644 --- a/examples/stm32wb55/Cargo.toml +++ b/examples/stm32wb55/Cargo.toml | |||
| @@ -26,7 +26,7 @@ defmt = "0.2.0" | |||
| 26 | defmt-rtt = "0.2.0" | 26 | defmt-rtt = "0.2.0" |
| 27 | 27 | ||
| 28 | cortex-m = "0.7.1" | 28 | cortex-m = "0.7.1" |
| 29 | cortex-m-rt = "0.6.14" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = { version = "0.2.4" } |
| 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 31 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } |
| 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 32 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } |
diff --git a/stm32-metapac/Cargo.toml b/stm32-metapac/Cargo.toml index fabd95664..894b101e0 100644 --- a/stm32-metapac/Cargo.toml +++ b/stm32-metapac/Cargo.toml | |||
| @@ -6,7 +6,7 @@ resolver = "2" | |||
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | cortex-m = "0.7.2" | 8 | cortex-m = "0.7.2" |
| 9 | cortex-m-rt = { version = "0.6.8", optional = true } | 9 | cortex-m-rt = { version = ">=0.6.15,<0.8", optional = true } |
| 10 | 10 | ||
| 11 | # BEGIN BUILD DEPENDENCIES | 11 | # BEGIN BUILD DEPENDENCIES |
| 12 | # These are removed when generating the pre-generated crate using the tool at gen/. | 12 | # These are removed when generating the pre-generated crate using the tool at gen/. |
