diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-09-11 00:10:46 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-09-11 01:35:23 +0200 |
| commit | f2623e7e9b03bc6539827e8c9d1a9cb6dd7ede2e (patch) | |
| tree | b2b97c894dc78a907455a6718b9122d461ec87e5 | |
| parent | 9082e5f6c5982e7d220f54c8e64e0dd27c6c579d (diff) | |
Update lots of deps
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | .vscode/settings.json | 3 | ||||
| -rw-r--r-- | embassy-hal-common/Cargo.toml | 8 | ||||
| -rw-r--r-- | embassy-macros/Cargo.toml | 8 | ||||
| -rw-r--r-- | embassy-net/Cargo.toml | 14 | ||||
| -rw-r--r-- | embassy-nrf/Cargo.toml | 26 | ||||
| -rw-r--r-- | embassy-rp/Cargo.toml | 10 | ||||
| -rw-r--r-- | embassy-stm32/Cargo.toml | 20 | ||||
| -rw-r--r-- | embassy-traits/Cargo.toml | 4 | ||||
| -rw-r--r-- | embassy/Cargo.toml | 22 | ||||
| -rw-r--r-- | embassy/src/util/mpsc.rs | 2 | ||||
| -rw-r--r-- | examples/nrf/Cargo.toml | 8 | ||||
| -rw-r--r-- | examples/rp/Cargo.toml | 10 | ||||
| -rw-r--r-- | examples/std/Cargo.toml | 18 | ||||
| -rw-r--r-- | examples/std/src/serial_port.rs | 9 | ||||
| -rw-r--r-- | examples/stm32f0/Cargo.toml | 8 | ||||
| -rw-r--r-- | examples/stm32f4/Cargo.toml | 16 | ||||
| -rw-r--r-- | examples/stm32g0/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32h7/Cargo.toml | 16 | ||||
| -rw-r--r-- | examples/stm32l0/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32l4/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32wb55/Cargo.toml | 14 | ||||
| -rw-r--r-- | examples/stm32wl55/Cargo.toml | 14 | ||||
| -rw-r--r-- | stm32-metapac-gen/Cargo.toml | 8 | ||||
| -rw-r--r-- | stm32-metapac/Cargo.toml | 2 | ||||
| -rw-r--r-- | xtask/Cargo.toml | 8 |
26 files changed, 145 insertions, 148 deletions
diff --git a/.gitignore b/.gitignore index 30628ed58..7faa2c32d 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | target | 1 | target |
| 2 | target_ci | ||
| 2 | Cargo.lock | 3 | Cargo.lock |
| 3 | third_party | 4 | third_party |
| 4 | /Cargo.toml | 5 | /Cargo.toml |
| 5 | stm32-metapac-gen/out/ \ No newline at end of file | 6 | stm32-metapac-gen/out/ |
diff --git a/.vscode/settings.json b/.vscode/settings.json index a5a656637..ed01f7557 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json | |||
| @@ -6,12 +6,11 @@ | |||
| 6 | "rust-analyzer.checkOnSave.allTargets": false, | 6 | "rust-analyzer.checkOnSave.allTargets": false, |
| 7 | "rust-analyzer.cargo.noDefaultFeatures": true, | 7 | "rust-analyzer.cargo.noDefaultFeatures": true, |
| 8 | "rust-analyzer.checkOnSave.noDefaultFeatures": true, | 8 | "rust-analyzer.checkOnSave.noDefaultFeatures": true, |
| 9 | "rust-analyzer.cargo.target": "thumbv7em-none-eabi", | 9 | //"rust-analyzer.cargo.target": "thumbv7em-none-eabi", |
| 10 | "rust-analyzer.cargo.features": [ | 10 | "rust-analyzer.cargo.features": [ |
| 11 | // These are needed to prevent embassy-net from failing to build | 11 | // These are needed to prevent embassy-net from failing to build |
| 12 | "embassy-net/medium-ethernet", | 12 | "embassy-net/medium-ethernet", |
| 13 | "embassy-net/tcp", | 13 | "embassy-net/tcp", |
| 14 | "embassy-net/pool-16", | ||
| 15 | ], | 14 | ], |
| 16 | "rust-analyzer.procMacro.enable": true, | 15 | "rust-analyzer.procMacro.enable": true, |
| 17 | "rust-analyzer.cargo.runBuildScripts": true, | 16 | "rust-analyzer.cargo.runBuildScripts": true, |
diff --git a/embassy-hal-common/Cargo.toml b/embassy-hal-common/Cargo.toml index 0e28085ff..575007070 100644 --- a/embassy-hal-common/Cargo.toml +++ b/embassy-hal-common/Cargo.toml | |||
| @@ -14,8 +14,8 @@ defmt-error = [ ] | |||
| 14 | [dependencies] | 14 | [dependencies] |
| 15 | embassy = { version = "0.1.0", path = "../embassy" } | 15 | embassy = { version = "0.1.0", path = "../embassy" } |
| 16 | 16 | ||
| 17 | defmt = { version = "0.2.0", optional = true } | 17 | defmt = { version = "0.2.3", optional = true } |
| 18 | log = { version = "0.4.11", optional = true } | 18 | log = { version = "0.4.14", optional = true } |
| 19 | cortex-m = "0.7.1" | 19 | cortex-m = "0.7.3" |
| 20 | usb-device = "0.2.7" | 20 | usb-device = "0.2.8" |
| 21 | num-traits = { version = "0.2.14", default-features = false } | 21 | num-traits = { version = "0.2.14", default-features = false } |
diff --git a/embassy-macros/Cargo.toml b/embassy-macros/Cargo.toml index 06dc6f072..b56f0f72f 100644 --- a/embassy-macros/Cargo.toml +++ b/embassy-macros/Cargo.toml | |||
| @@ -5,10 +5,10 @@ authors = ["Dario Nieuwenhuis <[email protected]>"] | |||
| 5 | edition = "2018" | 5 | edition = "2018" |
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | syn = { version = "1.0.39", features = ["full", "extra-traits"] } | 8 | syn = { version = "1.0.76", features = ["full", "extra-traits"] } |
| 9 | quote = "1.0.7" | 9 | quote = "1.0.9" |
| 10 | darling = "0.10.2" | 10 | darling = "0.13.0" |
| 11 | proc-macro2 = "1.0.24" | 11 | proc-macro2 = "1.0.29" |
| 12 | 12 | ||
| 13 | [lib] | 13 | [lib] |
| 14 | proc-macro = true | 14 | proc-macro = true |
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index 0f4571761..161a3946e 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml | |||
| @@ -25,18 +25,18 @@ pool-32 = [] | |||
| 25 | 25 | ||
| 26 | [dependencies] | 26 | [dependencies] |
| 27 | 27 | ||
| 28 | defmt = { version = "0.2.0", optional = true } | 28 | defmt = { version = "0.2.3", optional = true } |
| 29 | log = { version = "0.4.11", optional = true } | 29 | log = { version = "0.4.14", optional = true } |
| 30 | 30 | ||
| 31 | embassy = { version = "0.1.0", path = "../embassy" } | 31 | embassy = { version = "0.1.0", path = "../embassy" } |
| 32 | 32 | ||
| 33 | managed = { version = "0.8.0", default-features = false, features = [ "map" ]} | 33 | managed = { version = "0.8.0", default-features = false, features = [ "map" ] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
| 35 | as-slice = { version = "0.1.4" } | 35 | as-slice = "0.2.1" |
| 36 | generic-array = { version = "0.14.4", default-features = false } | 36 | generic-array = { version = "0.14.4", default-features = false } |
| 37 | stable_deref_trait = { version = "1.2.0", default-features = false } | 37 | stable_deref_trait = { version = "1.2.0", default-features = false } |
| 38 | futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]} | 38 | futures = { version = "0.3.17", default-features = false, features = [ "async-await" ] } |
| 39 | atomic-pool = "0.2.0" | 39 | atomic-pool = "0.2.1" |
| 40 | 40 | ||
| 41 | [dependencies.smoltcp] | 41 | [dependencies.smoltcp] |
| 42 | git = "https://github.com/smoltcp-rs/smoltcp" | 42 | git = "https://github.com/smoltcp-rs/smoltcp" |
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index ea7efec19..f42840133 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -38,20 +38,20 @@ embassy = { version = "0.1.0", path = "../embassy" } | |||
| 38 | embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["nrf"]} | 38 | embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["nrf"]} |
| 39 | embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } | 39 | embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } |
| 40 | 40 | ||
| 41 | defmt = { version = "0.2.0", optional = true } | 41 | defmt = { version = "0.2.3", optional = true } |
| 42 | log = { version = "0.4.11", optional = true } | 42 | log = { version = "0.4.14", optional = true } |
| 43 | cortex-m-rt = ">=0.6.15,<0.8" | 43 | cortex-m-rt = ">=0.6.15,<0.8" |
| 44 | cortex-m = "0.7.1" | 44 | cortex-m = "0.7.3" |
| 45 | embedded-hal = { version = "0.2.4" } | 45 | embedded-hal = "0.2.6" |
| 46 | embedded-dma = { version = "0.1.2" } | 46 | embedded-dma = "0.1.2" |
| 47 | futures = { version = "0.3.5", default-features = false } | 47 | futures = { version = "0.3.17", default-features = false } |
| 48 | critical-section = "0.2.1" | 48 | critical-section = "0.2.1" |
| 49 | rand_core = "0.6.3" | 49 | rand_core = "0.6.3" |
| 50 | 50 | ||
| 51 | nrf52805-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 51 | nrf52805-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 52 | nrf52810-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 52 | nrf52810-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 53 | nrf52811-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 53 | nrf52811-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 54 | nrf52820-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 54 | nrf52820-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 55 | nrf52832-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 55 | nrf52832-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 56 | nrf52833-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 56 | nrf52833-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
| 57 | nrf52840-pac = { version = "0.10.1", optional = true, features = [ "rt" ]} | 57 | nrf52840-pac = { version = "0.10.1", optional = true, features = [ "rt" ] } |
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 3702404b8..770005119 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml | |||
| @@ -22,13 +22,13 @@ defmt-error = [ ] | |||
| 22 | embassy = { version = "0.1.0", path = "../embassy", features = [ "time-tick-1mhz" ] } | 22 | embassy = { version = "0.1.0", path = "../embassy", features = [ "time-tick-1mhz" ] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } |
| 24 | embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["rp"]} | 24 | embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["rp"]} |
| 25 | atomic-polyfill = { version = "0.1.2" } | 25 | atomic-polyfill = "0.1.3" |
| 26 | defmt = { version = "0.2.0", optional = true } | 26 | defmt = { version = "0.2.3", optional = true } |
| 27 | log = { version = "0.4.11", optional = true } | 27 | log = { version = "0.4.14", optional = true } |
| 28 | cortex-m-rt = ">=0.6.15,<0.8" | 28 | cortex-m-rt = ">=0.6.15,<0.8" |
| 29 | cortex-m = "0.7.1" | 29 | cortex-m = "0.7.3" |
| 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="9ad7223a48a065e612bc7dc7be5bf5bd0b41cfc4", 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.6", features = [ "unproven" ] } |
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 325e128d2..b34d56854 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -12,28 +12,28 @@ embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" } | |||
| 12 | embassy-traits = {version = "0.1.0", path = "../embassy-traits" } | 12 | embassy-traits = {version = "0.1.0", path = "../embassy-traits" } |
| 13 | embassy-net = { version = "0.1.0", path = "../embassy-net", default-features = false, optional = true } | 13 | embassy-net = { version = "0.1.0", path = "../embassy-net", default-features = false, optional = true } |
| 14 | 14 | ||
| 15 | defmt = { version = "0.2.0", optional = true } | 15 | defmt = { version = "0.2.3", optional = true } |
| 16 | log = { version = "0.4.11", optional = true } | 16 | log = { version = "0.4.14", optional = true } |
| 17 | cortex-m-rt = ">=0.6.15,<0.8" | 17 | cortex-m-rt = ">=0.6.15,<0.8" |
| 18 | cortex-m = "0.7.1" | 18 | cortex-m = "0.7.3" |
| 19 | embedded-hal = { version = "0.2.4", features = ["unproven"] } | 19 | embedded-hal = { version = "0.2.6", features = ["unproven"] } |
| 20 | futures = { version = "0.3.5", default-features = false, features = ["async-await"] } | 20 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 21 | rand_core = { version = "0.6.2" } | 21 | rand_core = "0.6.3" |
| 22 | sdio-host = { version = "0.5.0" } | 22 | sdio-host = "0.5.0" |
| 23 | embedded-sdmmc = { git = "https://github.com/thalesfragoso/embedded-sdmmc-rs", branch = "async", optional = true } | 23 | embedded-sdmmc = { git = "https://github.com/thalesfragoso/embedded-sdmmc-rs", branch = "async", optional = true } |
| 24 | critical-section = "0.2.1" | 24 | critical-section = "0.2.1" |
| 25 | bare-metal = "1.0.0" | 25 | bare-metal = "1.0.0" |
| 26 | atomic-polyfill = "0.1.3" | 26 | atomic-polyfill = "0.1.3" |
| 27 | stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", features = ["rt"] } | 27 | stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", features = ["rt"] } |
| 28 | vcell = { version = "0.1.3", optional = true } | 28 | vcell = { version = "0.1.3", optional = true } |
| 29 | bxcan = { version = "0.5.1" } | 29 | bxcan = "0.5.1" |
| 30 | 30 | ||
| 31 | cfg-if = "1.0.0" | 31 | cfg-if = "1.0.0" |
| 32 | 32 | ||
| 33 | [build-dependencies] | 33 | [build-dependencies] |
| 34 | stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", default-features = false } | 34 | stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", default-features = false } |
| 35 | serde = { version = "1.0.123", features = [ "derive" ]} | 35 | serde = { version = "1.0.130", features = [ "derive" ] } |
| 36 | serde_yaml = "0.8.15" | 36 | serde_yaml = "0.8.21" |
| 37 | 37 | ||
| 38 | [features] | 38 | [features] |
| 39 | defmt-trace = [ ] | 39 | defmt-trace = [ ] |
diff --git a/embassy-traits/Cargo.toml b/embassy-traits/Cargo.toml index 737f91181..9e23453a8 100644 --- a/embassy-traits/Cargo.toml +++ b/embassy-traits/Cargo.toml | |||
| @@ -8,5 +8,5 @@ edition = "2018" | |||
| 8 | std = [] | 8 | std = [] |
| 9 | 9 | ||
| 10 | [dependencies] | 10 | [dependencies] |
| 11 | defmt = { version = "0.2.0", optional = true } | 11 | defmt = { version = "0.2.3", optional = true } |
| 12 | embedded-hal = { version = "0.2.3", features = ["unproven"] } | 12 | embedded-hal = { version = "0.2.6", features = ["unproven"] } |
diff --git a/embassy/Cargo.toml b/embassy/Cargo.toml index ecb53325f..0a8ab4434 100644 --- a/embassy/Cargo.toml +++ b/embassy/Cargo.toml | |||
| @@ -31,21 +31,21 @@ defmt-error = [] | |||
| 31 | executor-agnostic = [] | 31 | executor-agnostic = [] |
| 32 | 32 | ||
| 33 | [dependencies] | 33 | [dependencies] |
| 34 | defmt = { version = "0.2.0", optional = true } | 34 | defmt = { version = "0.2.3", optional = true } |
| 35 | log = { version = "0.4.11", optional = true } | 35 | log = { version = "0.4.14", optional = true } |
| 36 | 36 | ||
| 37 | cortex-m = "0.7.1" | 37 | cortex-m = "0.7.3" |
| 38 | futures = { version = "0.3.5", default-features = false, features = [ "cfg-target-has-atomic", "unstable" ] } | 38 | futures = { version = "0.3.17", default-features = false, features = [ "cfg-target-has-atomic", "unstable" ] } |
| 39 | pin-project = { version = "1.0.2", default-features = false } | 39 | pin-project = { version = "1.0.8", default-features = false } |
| 40 | embassy-macros = { version = "0.1.0", path = "../embassy-macros"} | 40 | embassy-macros = { version = "0.1.0", path = "../embassy-macros"} |
| 41 | embassy-traits = { version = "0.1.0", path = "../embassy-traits"} | 41 | embassy-traits = { version = "0.1.0", path = "../embassy-traits"} |
| 42 | atomic-polyfill = { version = "0.1.1" } | 42 | atomic-polyfill = "0.1.3" |
| 43 | critical-section = "0.2.1" | 43 | critical-section = "0.2.1" |
| 44 | embedded-hal = "0.2.5" | 44 | embedded-hal = "0.2.6" |
| 45 | 45 | ||
| 46 | [dev-dependencies] | 46 | [dev-dependencies] |
| 47 | embassy = { path = ".", features = ["executor-agnostic"] } | 47 | embassy = { path = ".", features = ["executor-agnostic"] } |
| 48 | futures-executor = { version = "0.3", features = [ "thread-pool" ] } | 48 | futures-executor = { version = "0.3.17", features = [ "thread-pool" ] } |
| 49 | futures-test = "0.3" | 49 | futures-test = "0.3.17" |
| 50 | futures-timer = "0.3" | 50 | futures-timer = "3.0.2" |
| 51 | futures-util = { version = "0.3", features = [ "channel" ] } | 51 | futures-util = { version = "0.3.17", features = [ "channel" ] } |
diff --git a/embassy/src/util/mpsc.rs b/embassy/src/util/mpsc.rs index 4257ecd40..a0f884ec6 100644 --- a/embassy/src/util/mpsc.rs +++ b/embassy/src/util/mpsc.rs | |||
| @@ -868,7 +868,7 @@ mod tests { | |||
| 868 | let send_task_2 = executor.spawn_with_handle(async move { s1.send(3).await }); | 868 | let send_task_2 = executor.spawn_with_handle(async move { s1.send(3).await }); |
| 869 | // Wish I could think of a means of determining that the async send is waiting instead. | 869 | // Wish I could think of a means of determining that the async send is waiting instead. |
| 870 | // However, I've used the debugger to observe that the send does indeed wait. | 870 | // However, I've used the debugger to observe that the send does indeed wait. |
| 871 | assert!(Delay::new(Duration::from_millis(500)).await.is_ok()); | 871 | Delay::new(Duration::from_millis(500)).await; |
| 872 | assert_eq!(r.recv().await, Some(1)); | 872 | assert_eq!(r.recv().await, Some(1)); |
| 873 | assert!(executor | 873 | assert!(executor |
| 874 | .spawn(async move { while let Some(_) = r.recv().await {} }) | 874 | .spawn(async move { while let Some(_) = r.recv().await {} }) |
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml index 0f932e25c..b71dfa0d4 100644 --- a/examples/nrf/Cargo.toml +++ b/examples/nrf/Cargo.toml | |||
| @@ -21,12 +21,12 @@ embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "def | |||
| 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } | 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } |
| 22 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840", "time-driver-rtc1", "gpiote"] } | 22 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840", "time-driver-rtc1", "gpiote"] } |
| 23 | 23 | ||
| 24 | defmt = "0.2.0" | 24 | defmt = "0.2.3" |
| 25 | defmt-rtt = "0.2.0" | 25 | defmt-rtt = "0.2.0" |
| 26 | 26 | ||
| 27 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 27 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 28 | cortex-m-rt = "0.7.0" | 28 | cortex-m-rt = "0.7.0" |
| 29 | embedded-hal = { version = "0.2.4" } | 29 | embedded-hal = "0.2.6" |
| 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 31 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 31 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 32 | rand = { version = "0.8.4", default-features = false } | 32 | rand = { version = "0.8.4", default-features = false } |
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml index db222e071..d168c39fa 100644 --- a/examples/rp/Cargo.toml +++ b/examples/rp/Cargo.toml | |||
| @@ -19,16 +19,16 @@ 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 | atomic-polyfill = { version = "0.1.1" } | 22 | atomic-polyfill = "0.1.3" |
| 23 | 23 | ||
| 24 | defmt = "0.2.0" | 24 | defmt = "0.2.3" |
| 25 | defmt-rtt = "0.2.0" | 25 | defmt-rtt = "0.2.0" |
| 26 | 26 | ||
| 27 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 27 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 28 | cortex-m-rt = "0.7.0" | 28 | cortex-m-rt = "0.7.0" |
| 29 | embedded-hal = { version = "0.2.4" } | 29 | embedded-hal = "0.2.6" |
| 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 30 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 31 | futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } | 31 | futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } |
| 32 | display-interface-spi = "0.4.1" | 32 | display-interface-spi = "0.4.1" |
| 33 | embedded-graphics = "0.7.1" | 33 | embedded-graphics = "0.7.1" |
| 34 | st7789 = "0.6.1" | 34 | st7789 = "0.6.1" |
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 34b8ebb67..3ba495e59 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -9,12 +9,12 @@ embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", | |||
| 9 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } | 9 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } |
| 10 | smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } | 10 | smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } |
| 11 | 11 | ||
| 12 | async-io = "1.3.1" | 12 | async-io = "1.6.0" |
| 13 | env_logger = "0.8.2" | 13 | env_logger = "0.9.0" |
| 14 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 14 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 15 | log = "0.4.11" | 15 | log = "0.4.14" |
| 16 | nix = "0.21.0" | 16 | nix = "0.22.1" |
| 17 | libc = "0.2.81" | 17 | libc = "0.2.101" |
| 18 | clap = { version = "3.0.0-beta.2", features = ["derive"] } | 18 | clap = { version = "3.0.0-beta.4", features = ["derive"] } |
| 19 | rand_core = { version = "0.6.0", features = ["std"] } | 19 | rand_core = { version = "0.6.3", features = ["std"] } |
| 20 | heapless = { version = "0.7.1", default-features = false } | 20 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/std/src/serial_port.rs b/examples/std/src/serial_port.rs index 7ac1b1edb..aadaeb81d 100644 --- a/examples/std/src/serial_port.rs +++ b/examples/std/src/serial_port.rs | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | use nix::errno::Errno; | ||
| 1 | use nix::fcntl::OFlag; | 2 | use nix::fcntl::OFlag; |
| 2 | use nix::sys::termios; | 3 | use nix::sys::termios; |
| 3 | use nix::Error; | ||
| 4 | use std::io; | 4 | use std::io; |
| 5 | use std::os::unix::io::{AsRawFd, RawFd}; | 5 | use std::os::unix::io::{AsRawFd, RawFd}; |
| 6 | 6 | ||
| @@ -63,9 +63,6 @@ impl io::Write for SerialPort { | |||
| 63 | } | 63 | } |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | fn to_io_error(e: Error) -> io::Error { | 66 | fn to_io_error(e: Errno) -> io::Error { |
| 67 | match e { | 67 | e.into() |
| 68 | Error::Sys(errno) => errno.into(), | ||
| 69 | e => io::Error::new(io::ErrorKind::InvalidInput, e), | ||
| 70 | } | ||
| 71 | } | 68 | } |
diff --git a/examples/stm32f0/Cargo.toml b/examples/stm32f0/Cargo.toml index d37391e4f..2db98488d 100644 --- a/examples/stm32f0/Cargo.toml +++ b/examples/stm32f0/Cargo.toml | |||
| @@ -8,12 +8,12 @@ resolver = "2" | |||
| 8 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 8 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 9 | 9 | ||
| 10 | [dependencies] | 10 | [dependencies] |
| 11 | cortex-m = { version = "0.7.1", features = ["inline-asm"] } | 11 | cortex-m = { version = "0.7.3", features = ["inline-asm"] } |
| 12 | cortex-m-rt = "0.7.0" | 12 | cortex-m-rt = "0.7.0" |
| 13 | defmt = "0.2.0" | 13 | defmt = "0.2.3" |
| 14 | defmt-rtt = "0.2.0" | 14 | defmt-rtt = "0.2.0" |
| 15 | panic-probe = { version = "0.2.0" } | 15 | panic-probe = "0.2.0" |
| 16 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 16 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 17 | embassy = { path = "../../embassy", features = ["defmt"] } | 17 | embassy = { path = "../../embassy", features = ["defmt"] } |
| 18 | embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "stm32f030f4", "time-driver-tim3"] } | 18 | embassy-stm32 = { path = "../../embassy-stm32", features = ["defmt", "stm32f030f4", "time-driver-tim3"] } |
| 19 | 19 | ||
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index 8a7f45877..ce3a26bbf 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml | |||
| @@ -22,14 +22,14 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory-x", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32f429zi", "unstable-pac", "memory-x", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 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.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
| 35 | nb = { version = "1.0" } | 35 | nb = "1.0.0" |
diff --git a/examples/stm32g0/Cargo.toml b/examples/stm32g0/Cargo.toml index 83f535b91..58a62f7be 100644 --- a/examples/stm32g0/Cargo.toml +++ b/examples/stm32g0/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "time-driver-tim2", "stm32g071rb", "unstable-pac"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "time-driver-tim2", "stm32g071rb", "unstable-pac"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 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.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 1370cd9ab..94586b8ac 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml | |||
| @@ -24,17 +24,17 @@ embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | |||
| 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } | 24 | embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt-debug", "defmt", "tcp", "medium-ethernet", "pool-16"] } |
| 25 | embassy-macros = { path = "../../embassy-macros" } | 25 | embassy-macros = { path = "../../embassy-macros" } |
| 26 | 26 | ||
| 27 | defmt = "0.2.0" | 27 | defmt = "0.2.3" |
| 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.3" |
| 31 | cortex-m-rt = "0.7.0" | 31 | cortex-m-rt = "0.7.0" |
| 32 | embedded-hal = { version = "0.2.4" } | 32 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 35 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 35 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 36 | heapless = { version = "0.7.1", default-features = false } | 36 | heapless = { version = "0.7.5", default-features = false } |
| 37 | rand_core = { version = "0.6.2" } | 37 | rand_core = "0.6.3" |
| 38 | critical-section = "0.2.1" | 38 | critical-section = "0.2.1" |
| 39 | 39 | ||
| 40 | micromath = "2.0.0" | 40 | micromath = "2.0.0" |
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index 07b033c1e..7dfcdb0fe 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml | |||
| @@ -23,13 +23,13 @@ embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = [" | |||
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | embassy-macros = { path = "../../embassy-macros" } | 24 | embassy-macros = { path = "../../embassy-macros" } |
| 25 | 25 | ||
| 26 | defmt = "0.2.0" | 26 | defmt = "0.2.3" |
| 27 | defmt-rtt = "0.2.0" | 27 | defmt-rtt = "0.2.0" |
| 28 | 28 | ||
| 29 | cortex-m = "0.7.1" | 29 | cortex-m = "0.7.3" |
| 30 | cortex-m-rt = "0.7.0" | 30 | cortex-m-rt = "0.7.0" |
| 31 | embedded-hal = { version = "0.2.4" } | 31 | embedded-hal = "0.2.6" |
| 32 | panic-probe = { version = "0.2.0", features= ["print-defmt"] } | 32 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } |
| 33 | futures = { version = "0.3.8", default-features = false, features = ["async-await"] } | 33 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 34 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 34 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 35 | heapless = { version = "0.7.1", default-features = false } | 35 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml index 3fa6fa467..26d4cae48 100644 --- a/examples/stm32l4/Cargo.toml +++ b/examples/stm32l4/Cargo.toml | |||
| @@ -22,16 +22,16 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 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.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
| 35 | 35 | ||
| 36 | micromath = "2.0.0" | 36 | micromath = "2.0.0" |
| 37 | 37 | ||
diff --git a/examples/stm32wb55/Cargo.toml b/examples/stm32wb55/Cargo.toml index c12e489f7..3a6f63baf 100644 --- a/examples/stm32wb55/Cargo.toml +++ b/examples/stm32wb55/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wb55cc", "time-driver-tim2"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wb55cc", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 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.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/examples/stm32wl55/Cargo.toml b/examples/stm32wl55/Cargo.toml index 1bdfe9bc9..d0c727862 100644 --- a/examples/stm32wl55/Cargo.toml +++ b/examples/stm32wl55/Cargo.toml | |||
| @@ -22,13 +22,13 @@ embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = | |||
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz"] } | 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32wl55jc_cm4", "time-driver-tim2", "memory-x", "subghz"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 24 | ||
| 25 | defmt = "0.2.0" | 25 | defmt = "0.2.3" |
| 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.3" |
| 29 | cortex-m-rt = "0.7.0" | 29 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = { version = "0.2.4" } | 30 | embedded-hal = "0.2.6" |
| 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.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3", features = ["cortex-m"] } | 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.1", default-features = false } | 34 | heapless = { version = "0.7.5", default-features = false } |
diff --git a/stm32-metapac-gen/Cargo.toml b/stm32-metapac-gen/Cargo.toml index b36a0c3f4..74939aec4 100644 --- a/stm32-metapac-gen/Cargo.toml +++ b/stm32-metapac-gen/Cargo.toml | |||
| @@ -5,8 +5,8 @@ edition = "2018" | |||
| 5 | 5 | ||
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | regex = "1.4.6" | 8 | regex = "1.5.4" |
| 9 | chiptool = { git = "https://github.com/embassy-rs/chiptool", rev = "31c3c09197d63d29eddbf4c70d6158edac0ac5d3" } | 9 | chiptool = { git = "https://github.com/embassy-rs/chiptool", rev = "31c3c09197d63d29eddbf4c70d6158edac0ac5d3" } |
| 10 | serde = { version = "1.0.123", features = [ "derive" ]} | 10 | serde = { version = "1.0.130", features = [ "derive" ] } |
| 11 | serde_yaml = "0.8.15" | 11 | serde_yaml = "0.8.21" |
| 12 | proc-macro2 = "1.0" | 12 | proc-macro2 = "1.0.29" |
diff --git a/stm32-metapac/Cargo.toml b/stm32-metapac/Cargo.toml index 894b101e0..6aba696ab 100644 --- a/stm32-metapac/Cargo.toml +++ b/stm32-metapac/Cargo.toml | |||
| @@ -5,7 +5,7 @@ edition = "2018" | |||
| 5 | resolver = "2" | 5 | resolver = "2" |
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | cortex-m = "0.7.2" | 8 | cortex-m = "0.7.3" |
| 9 | cortex-m-rt = { version = ">=0.6.15,<0.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 |
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index ffa06ea9e..1f9eabdf5 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml | |||
| @@ -8,7 +8,7 @@ name = "xtask" | |||
| 8 | version = "0.1.0" | 8 | version = "0.1.0" |
| 9 | 9 | ||
| 10 | [dependencies] | 10 | [dependencies] |
| 11 | anyhow = "1.0" | 11 | anyhow = "1.0.43" |
| 12 | xshell = "0.1" | 12 | xshell = "0.1.17" |
| 13 | yaml-rust = "0.4" | 13 | yaml-rust = "0.4.5" |
| 14 | walkdir = "2.3.2" \ No newline at end of file | 14 | walkdir = "2.3.2" |
