aniker/Cargo.toml

32 lines
702 B
TOML
Raw Normal View History

2025-04-16 21:00:32 +01:00
[package]
name = "aniker"
version = "0.1.0"
authors = ["Richard Patching <richard@justaddpixels.com>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "aniker"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[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"] }
aniker-gps = { path = "../aniker-gps" }
[build-dependencies]
embuild = "0.33"