51 lines
1.9 KiB
TOML
51 lines
1.9 KiB
TOML
[package]
|
|
name = "geode_piano"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
embassy-embedded-hal = { version = "0.1.0", features = ["defmt"] }
|
|
embassy-sync = { version = "0.5.0", features = ["defmt"] }
|
|
embassy-executor = { version = "0.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
|
|
embassy-time = { version = "0.3.0", features = ["defmt", "defmt-timestamp-uptime"] }
|
|
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl"] }
|
|
embassy-usb = { version = "0.1.0", features = ["defmt"] }
|
|
embassy-futures = { version = "0.1.0" }
|
|
# vendored because they haven't released the with_class macro
|
|
embassy-usb-logger = { path = "vendor/embassy-usb-logger" }
|
|
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.4"
|
|
fixed = "1.23.1"
|
|
fixed-macro = "1.2"
|
|
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
|
|
cortex-m-rt = "0.7.0"
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
|
display-interface-spi = "0.4.1"
|
|
byte-slice-cast = { version = "1.2.0", default-features = false }
|
|
smart-leds = "0.3.0"
|
|
heapless = "0.8"
|
|
usbd-hid = "0.7.0"
|
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
|
|
embedded-hal-02 = { package = "embedded-hal", version = "0.2.7" }
|
|
embedded-hal-async = "1.0"
|
|
embedded-hal-bus = { version = "0.1", features = ["async"] }
|
|
embedded-io-async = { version = "0.6.1", features = ["defmt-03"] }
|
|
embedded-storage = { version = "0.3" }
|
|
static_cell = "2"
|
|
portable-atomic = { version = "1.5", features = ["critical-section"] }
|
|
log = "0.4"
|
|
|
|
# vendored for performance reasons
|
|
mcp23017 = { version = "1.1.0", path = "vendor/mcp23017" }
|
|
shared-bus = "0.3.1"
|
|
|
|
[profile.release]
|
|
debug = 2
|