waveshare-rust-rp2040/Cargo.toml

34 lines
874 B
TOML
Raw Permalink Normal View History

2021-10-11 20:19:54 +00:00
[package]
name = "waveshare_rust_rp2040"
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]
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
embedded-hal = { version = "0.2.5", features=["unproven"] }
embedded-time = "0.12.0"
embedded-graphics = "0.6.1"
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" }
epd-waveshare = "0.4.0"
tinytga = { version = "0.3.2", features = [ "graphics" ] }
# cargo build/run --release
[profile.release]
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 3
overflow-checks = false