diff options
| author | James Munns <[email protected]> | 2025-12-05 14:28:47 +0100 |
|---|---|---|
| committer | James Munns <[email protected]> | 2025-12-05 14:28:47 +0100 |
| commit | b252db845e19603faf528cf93fe0c44757a27430 (patch) | |
| tree | 99e646d17bed747df244dd607a15f5a67baa530a /examples/mcxa/Cargo.toml | |
| parent | 6a1eed83b9df8ffa81b93860f530f5bb3252d996 (diff) | |
Move
Diffstat (limited to 'examples/mcxa/Cargo.toml')
| -rw-r--r-- | examples/mcxa/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/mcxa/Cargo.toml b/examples/mcxa/Cargo.toml new file mode 100644 index 000000000..a1092c416 --- /dev/null +++ b/examples/mcxa/Cargo.toml | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | [package] | ||
| 2 | name = "embassy-mcxa-examples" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | license = "MIT OR Apache-2.0" | ||
| 6 | |||
| 7 | [dependencies] | ||
| 8 | cortex-m = { version = "0.7", features = ["critical-section-single-core"] } | ||
| 9 | cortex-m-rt = { version = "0.7", features = ["set-sp", "set-vtor"] } | ||
| 10 | critical-section = "1.2.0" | ||
| 11 | defmt = "1.0" | ||
| 12 | defmt-rtt = "1.0" | ||
| 13 | embassy-embedded-hal = "0.5.0" | ||
| 14 | embassy-executor = { version = "0.9.0", features = ["arch-cortex-m", "executor-interrupt", "executor-thread"], default-features = false } | ||
| 15 | embassy-mcxa = { path = "../", features = ["defmt", "unstable-pac", "time"] } | ||
| 16 | embassy-sync = "0.7.2" | ||
| 17 | embassy-time = "0.5.0" | ||
| 18 | embassy-time-driver = "0.2.1" | ||
| 19 | embedded-io-async = "0.6.1" | ||
| 20 | heapless = "0.9.2" | ||
| 21 | panic-probe = { version = "1.0", features = ["print-defmt"] } | ||
| 22 | tmp108 = "0.4.0" | ||
| 23 | |||
| 24 | [profile.release] | ||
| 25 | lto = true # better optimizations | ||
| 26 | debug = 2 # enough information for defmt/rtt locations | ||
