28 lines
614 B
TOML
28 lines
614 B
TOML
[package]
|
|
name = "cardputer-bsc-nostd"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "A no_std board support crate for the m5stack cardputer"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
harness = false
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
debug = true
|
|
|
|
[profile.dev]
|
|
debug = true # Symbols are nice and they don't increase the size on Flash
|
|
opt-level = "z"
|
|
|
|
[dependencies]
|
|
bitflags = "2.9.1"
|
|
bitmask-enum = "2.2.5"
|
|
embedded-hal-bus = "0.3.0"
|
|
esp-hal = {version = "=1.0.0-beta.1", features = ["esp32s3", "unstable"]}
|
|
mipidsi = "0.9.0"
|
|
thiserror = {version = "2.0.11", default-features = false}
|
|
|
|
[workspace]
|
|
members = ["examples/*"]
|