diff options
Diffstat (limited to 'docs/examples/layer-by-layer/blinky-pac/Cargo.toml')
| -rw-r--r-- | docs/examples/layer-by-layer/blinky-pac/Cargo.toml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/examples/layer-by-layer/blinky-pac/Cargo.toml b/docs/examples/layer-by-layer/blinky-pac/Cargo.toml index 155c41ec6..0d4711da2 100644 --- a/docs/examples/layer-by-layer/blinky-pac/Cargo.toml +++ b/docs/examples/layer-by-layer/blinky-pac/Cargo.toml | |||
| @@ -4,11 +4,17 @@ version = "0.1.0" | |||
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | 6 | ||
| 7 | publish = false | ||
| 7 | [dependencies] | 8 | [dependencies] |
| 8 | cortex-m = { version = "0.7", features = ["critical-section-single-core"] } | 9 | cortex-m = { version = "0.7", features = ["critical-section-single-core"] } |
| 9 | cortex-m-rt = "0.7" | 10 | cortex-m-rt = "0.7" |
| 10 | stm32-metapac = { version = "16", features = ["stm32l475vg"] } | 11 | stm32-metapac = { version = "16", features = ["stm32l475vg"] } |
| 11 | 12 | ||
| 12 | defmt = "0.3" | 13 | defmt = "1.0.1" |
| 13 | defmt-rtt = "0.4" | 14 | defmt-rtt = "1.0.0" |
| 14 | panic-probe = { version = "0.3.0", features = ["print-defmt"] } | 15 | panic-probe = { version = "1.0.0", features = ["print-defmt"] } |
| 16 | |||
| 17 | [package.metadata.embassy] | ||
| 18 | build = [ | ||
| 19 | { target = "thumbv7em-none-eabi" } | ||
| 20 | ] | ||
