code/Cargo.toml

27 lines
1.1 KiB
TOML
Raw Normal View History

2023-07-06 21:55:56 +00:00
[package]
name = "cybertail-code"
authors = ["Erin <contact@the-system.eu.org>"]
version = "0.1.0"
edition = "2021"
[dependencies]
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.0"
defmt = "0.3"
defmt-rtt = "0.3"
panic-probe = { version = "0.3", features = ["print-defmt"] }
2023-07-14 13:21:19 +00:00
embassy-executor = { version = "0.2.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "integrated-timers", "nightly", "arch-cortex-m", "executor-thread", "executor-interrupt"] }
2023-07-06 21:55:56 +00:00
embassy-time = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "defmt-timestamp-uptime"] }
embassy-rp = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] }
2023-07-14 13:21:19 +00:00
embassy-sync = { version = "0.2.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt"] }
static_cell = { version = "1.1", features = ["nightly"]}
2023-07-14 14:30:54 +00:00
nanorand = { version = "0.7.0", default-features = false, features = ["wyrand"] }
tinyvec = "1.6.0"
2023-07-21 20:42:46 +00:00
embedded-hal-async = "0.2.0-alpha.2"
2023-07-20 16:09:49 +00:00
[profile.release]
lto = "fat"
codegen-units = 1