2021-09-25 21:30:02 +00:00
|
|
|
[package]
|
|
|
|
name = "analte"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["kirbylife <kirbylife@protonmail.com>"]
|
|
|
|
edition = "2018"
|
2021-11-07 08:44:32 +00:00
|
|
|
resolver = "2"
|
2021-09-25 21:30:02 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-07 08:44:32 +00:00
|
|
|
# Low level things
|
|
|
|
num-format = { version = "0.4", default-features = false }
|
|
|
|
cortex-m = "0.7.3"
|
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
embedded-hal = { version = "0.2", features=["unproven"] }
|
|
|
|
embedded-time = "0.12.0"
|
|
|
|
panic-probe = { version = "0.2.0" }
|
|
|
|
rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", branch="main", features=["rt"] }
|
|
|
|
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", branch="main" }
|
|
|
|
|
|
|
|
# Graphics things
|
|
|
|
embedded-graphics = "0.6.1"
|
|
|
|
epd-waveshare = "0.4.0"
|
|
|
|
tinytga = { version = "0.3.2", features = [ "graphics" ] }
|
|
|
|
|
|
|
|
# Storage things
|
|
|
|
# embedded-sdmmc = "0.3.0"
|
|
|
|
# embedded-sdmmc = { git = "https://github.com/kirbylife/embedded-sdmmc-rs", branch="develop" }
|
|
|
|
embedded-sdmmc = { path = "../embedded-sdmmc-rs" }
|
|
|
|
|
|
|
|
# cargo build/run --release
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
debug = 2
|
|
|
|
debug-assertions = false
|
|
|
|
incremental = false
|
|
|
|
lto = 'fat'
|
|
|
|
opt-level = 3
|
|
|
|
overflow-checks = false
|