63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[package]
|
|
name = "satrs-stm32f3-disco-rtic"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "satrs-stm32f3-disco-rtic"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7"
|
|
defmt = "1"
|
|
defmt-rtt = { version = "1" }
|
|
panic-probe = { version = "1", features = ["print-defmt"] }
|
|
embedded-hal = "1"
|
|
cortex-m-semihosting = "0.5.0"
|
|
embassy-stm32 = { version = "0.6", features = ["defmt", "stm32f303vc", "memory-x", "unstable-pac", "time-driver-any"] }
|
|
embassy-time = { version = "0.5", features = ["defmt", "generic-queue-16", "defmt-timestamp-uptime-ms"]}
|
|
enumset = "1"
|
|
heapless = "0.9"
|
|
spacepackets = { version = "0.17", default-features = false, features = ["defmt", "serde"] }
|
|
static_cell = "2"
|
|
cobs = { version = "0.5", default-features = false, features = ["defmt"] }
|
|
postcard = { version = "1" }
|
|
arbitrary-int = "2"
|
|
thiserror = { version = "2", default-features = false }
|
|
serde = { version = "1", default-features = false, features = ["derive"] }
|
|
|
|
rtic = { version = "2", features = ["thumbv7-backend"] }
|
|
rtic-sync = { version = "1" }
|
|
|
|
[dev-dependencies]
|
|
defmt-test = "0.5"
|
|
|
|
# cargo test
|
|
[profile.test]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = true # <-
|
|
incremental = false
|
|
opt-level = "s" # <-
|
|
overflow-checks = true # <-
|
|
|
|
# cargo build/run --release
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = false # <-
|
|
incremental = false
|
|
lto = 'fat'
|
|
opt-level = "s" # <-
|
|
overflow-checks = false # <-
|
|
|
|
# cargo test --release
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = false # <-
|
|
incremental = false
|
|
lto = 'fat'
|
|
opt-level = "s" # <-
|
|
overflow-checks = false # <-
|