mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-27 04:10:25 +00:00
23 lines
623 B
TOML
23 lines
623 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "embassy-bench"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
teleprobe-meta = "1"
|
|
embassy-executor = { version = "0.6.3", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "defmt", "nightly"] }
|
|
static_cell = { version = "2", features = ["nightly"] }
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.4"
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.0"
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = 2
|
|
incremental = false
|
|
lto = "fat"
|
|
opt-level = 's'
|