hello-esp32s3/Cargo.toml
licsber f76112a209
Some checks are pending
Continuous Integration / Rust Checks (map[args:--all -- --check --color always command:fmt]) (push) Waiting to run
Continuous Integration / Rust Checks (map[args:--all-targets --all-features --workspace -- -D warnings command:clippy]) (push) Waiting to run
Continuous Integration / Rust Checks (map[args:--release command:build]) (push) Waiting to run
init commit.
2024-09-26 09:22:11 +08:00

36 lines
949 B
TOML

[package]
name = "hello_esp32s3"
version = "0.1.0"
authors = ["licsber <admin@licsber.site>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "hello_esp32s3"
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 = ["std", "embassy", "esp-idf-svc/native"]
pio = ["esp-idf-svc/pio"]
std = ["alloc", "esp-idf-svc/binstart", "esp-idf-svc/std"]
alloc = ["esp-idf-svc/alloc"]
nightly = ["esp-idf-svc/nightly"]
experimental = ["esp-idf-svc/experimental"]
embassy = ["esp-idf-svc/embassy-sync", "esp-idf-svc/critical-section", "esp-idf-svc/embassy-time-driver"]
[dependencies]
log = { version = "0.4", default-features = false }
esp-idf-svc = { version = "0.49", default-features = false }
[build-dependencies]
embuild = "0.32.0"