Initial commit
parent
8716a548e6
commit
e2652a591b
30
Cargo.toml
30
Cargo.toml
|
@ -3,7 +3,37 @@ name = "analte"
|
|||
version = "0.1.0"
|
||||
authors = ["kirbylife <kirbylife@protonmail.com>"]
|
||||
edition = "2018"
|
||||
resolver = "2"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue