Some checks failed
Continuous Integration / Rust Checks (map[args:--all -- --check --color always command:fmt]) (push) Has been cancelled
Continuous Integration / Rust Checks (map[args:--all-targets --all-features --workspace -- -D warnings command:clippy]) (push) Has been cancelled
Continuous Integration / Rust Checks (map[args:--release command:build]) (push) Has been cancelled
32 lines
761 B
TOML
32 lines
761 B
TOML
[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]
|
|
esp-idf-svc = { version = "0.51", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
|
|
esp-idf-hal = "0.45.2"
|
|
aniker-gps = { path = "../aniker-gps" }
|
|
log = "0.4"
|
|
|
|
[build-dependencies]
|
|
embuild = { version = "0.33", features = ["espidf"] }
|