2025-12-26 17:38:22 -05:00
|
|
|
[package]
|
|
|
|
|
name = "sh1106-pico-rs"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-26 17:55:26 -05:00
|
|
|
cortex-m = { version = "0.7.7", features = [ "critical-section-single-core" ] }
|
|
|
|
|
cortex-m-rt = "0.7.5"
|
|
|
|
|
defmt = "1.0.1"
|
|
|
|
|
defmt-rtt = "1.0.0"
|
|
|
|
|
embedded-hal = "1.0.0"
|
2025-12-26 17:38:22 -05:00
|
|
|
rp2040-boot2 = "0.3.0"
|
2025-12-26 17:55:26 -05:00
|
|
|
rp2040-hal = "0.11.0"
|
|
|
|
|
panic-probe = { version = "1.0.0", features = [ "print-rtt" ] }
|
2025-12-26 17:38:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
2025-12-26 17:55:26 -05:00
|
|
|
logging = []
|