init repo
This commit is contained in:
47
Cargo.toml
Normal file
47
Cargo.toml
Normal file
@@ -0,0 +1,47 @@
|
||||
[package]
|
||||
edition = "2024"
|
||||
name = "my-led-tree"
|
||||
version = "0.1.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
embassy-embedded-hal = { version = "0.5.0", features = ["defmt"] }
|
||||
embassy-sync = { version = "0.7.2", features = ["defmt"] }
|
||||
embassy-executor = { version = "0.9.0", features = [
|
||||
"arch-cortex-m",
|
||||
"executor-thread",
|
||||
"executor-interrupt",
|
||||
"defmt",
|
||||
] }
|
||||
embassy-time = { version = "0.5.0", features = [
|
||||
"defmt",
|
||||
"defmt-timestamp-uptime",
|
||||
] }
|
||||
embassy-rp = { version = "0.9.0", features = [
|
||||
"defmt",
|
||||
"unstable-pac",
|
||||
"time-driver",
|
||||
"critical-section-impl",
|
||||
"rp235xa",
|
||||
"binary-info",
|
||||
] }
|
||||
embassy-futures = { version = "0.1.2" }
|
||||
|
||||
defmt = "1.0.1"
|
||||
defmt-rtt = "1.0.0"
|
||||
|
||||
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
|
||||
cortex-m-rt = "0.7.0"
|
||||
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|
||||
|
||||
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
|
||||
embedded-hal-async = "1.0"
|
||||
embedded-io-async = { version = "0.7.0", features = ["defmt"] }
|
||||
static_cell = "2.1"
|
||||
|
||||
[profile.release]
|
||||
# Enable generation of debug symbols even on release builds
|
||||
debug = true
|
||||
|
||||
[package.metadata.embassy]
|
||||
build = [{ target = "thumbv8m.main-none-eabihf" }]
|
||||
Reference in New Issue
Block a user