From e2652a591b2b2c5285b8a933609ba30b5386d6d8 Mon Sep 17 00:00:00 2001 From: kirbylife Date: Sun, 7 Nov 2021 02:44:32 -0600 Subject: [PATCH] Initial commit --- Cargo.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index cb805c6..1e6120b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,37 @@ name = "analte" version = "0.1.0" authors = ["kirbylife "] 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