diff options
| author | Bob McWhirter <[email protected]> | 2021-11-15 11:08:51 -0500 |
|---|---|---|
| committer | Bob McWhirter <[email protected]> | 2021-11-15 11:09:08 -0500 |
| commit | c2da49826345e82e7539fce3e96cce203253dc56 (patch) | |
| tree | 952c7117c7d103c0247a85c2776556c378eeefd8 /examples/stm32l4 | |
| parent | 4e0a0f27febfb00c9b4ec42275ac6b83c98436ea (diff) | |
Update to defmt 3.0ish.
Lots of gitrevs deps.
Diffstat (limited to 'examples/stm32l4')
| -rw-r--r-- | examples/stm32l4/Cargo.toml | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/examples/stm32l4/Cargo.toml b/examples/stm32l4/Cargo.toml index 26d4cae48..c6862b211 100644 --- a/examples/stm32l4/Cargo.toml +++ b/examples/stm32l4/Cargo.toml | |||
| @@ -6,29 +6,20 @@ version = "0.1.0" | |||
| 6 | resolver = "2" | 6 | resolver = "2" |
| 7 | 7 | ||
| 8 | [features] | 8 | [features] |
| 9 | default = [ | ||
| 10 | "defmt-default", | ||
| 11 | ] | ||
| 12 | defmt-default = [] | ||
| 13 | defmt-trace = [] | ||
| 14 | defmt-debug = [] | ||
| 15 | defmt-info = [] | ||
| 16 | defmt-warn = [] | ||
| 17 | defmt-error = [] | ||
| 18 | 9 | ||
| 19 | [dependencies] | 10 | [dependencies] |
| 20 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] } | 11 | embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt" ] } |
| 21 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } | 12 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] } |
| 22 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } | 13 | embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "unstable-pac", "stm32l4s5vi", "time-driver-tim2"] } |
| 23 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } | 14 | embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" } |
| 24 | 15 | ||
| 25 | defmt = "0.2.3" | 16 | defmt = "0.3" |
| 26 | defmt-rtt = "0.2.0" | 17 | defmt-rtt = "0.3" |
| 27 | 18 | ||
| 28 | cortex-m = "0.7.3" | 19 | cortex-m = "0.7.3" |
| 29 | cortex-m-rt = "0.7.0" | 20 | cortex-m-rt = "0.7.0" |
| 30 | embedded-hal = "0.2.6" | 21 | embedded-hal = "0.2.6" |
| 31 | panic-probe = { version = "0.2.0", features = ["print-defmt"] } | 22 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 32 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 23 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 33 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } | 24 | rtt-target = { version = "0.3.1", features = ["cortex-m"] } |
| 34 | heapless = { version = "0.7.5", default-features = false } | 25 | heapless = { version = "0.7.5", default-features = false } |
