cardputer/test-app/Cargo.toml

26 lines
598 B
TOML
Raw Permalink Normal View History

2025-07-04 09:10:36 +01:00
[package]
name = "test-app"
version = "0.1.0"
authors = ["ZacJW <zac@zacjw.com>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "test-app"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[features]
default = []
experimental = ["esp-idf-svc/experimental"]
[dependencies]
log = "0.4"
esp-idf-svc = { version = "0.51", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
2025-07-05 14:17:14 +01:00
cardputer-bsc = { version = "0.1.0", path = "../cardputer-bsc" }
embedded-graphics-core = "0.4.0"
2025-07-04 09:10:36 +01:00
[build-dependencies]
embuild = "0.33"