84 lines
2.3 KiB
TOML
84 lines
2.3 KiB
TOML
[package]
|
|
name = "plant-ctrl2"
|
|
version = "0.1.0"
|
|
authors = ["Empire Phoenix"]
|
|
edition = "2021"
|
|
resolver = "2"
|
|
rust-version = "1.71"
|
|
|
|
[profile.release]
|
|
# Explicitly disable LTO which the Xtensa codegen backend has issues
|
|
#lto = "thin"
|
|
opt-level = "s"
|
|
strip = false
|
|
#codegen-units = 1
|
|
debug = true
|
|
overflow-checks = true
|
|
panic = "unwind"
|
|
incremental = true
|
|
|
|
[profile.dev]
|
|
# Explicitly disable LTO which the Xtensa codegen backend has issues
|
|
#lto = "thin"
|
|
opt-level = "s"
|
|
strip = false
|
|
#codegen-units = 1
|
|
debug = true
|
|
overflow-checks = true
|
|
panic = "unwind"
|
|
incremental = true
|
|
|
|
[package.metadata.cargo_runner]
|
|
# The string `$TARGET_FILE` will be replaced with the path from cargo.
|
|
command = [
|
|
"cargo",
|
|
"espflash",
|
|
"save-image",
|
|
"--chip",
|
|
"esp32",
|
|
"image.bin"
|
|
]
|
|
|
|
|
|
[package.metadata.espflash]
|
|
partition_table = "partitions.csv"
|
|
|
|
[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.47.3", default-features = false }
|
|
serde = { version = "1.0.192", features = ["derive"] }
|
|
average = { version = "0.14.1" , features = ["std"] }
|
|
#esp32 = "0.28.0"
|
|
bit_field = "0.10.2"
|
|
ds18b20 = "0.1.1"
|
|
embedded-svc = { version = "0.26.4", features = ["experimental"] }
|
|
esp-idf-hal = "0.42.5"
|
|
esp-idf-sys = { version = "0.33.7", features = ["binstart", "native"] }
|
|
esp-ota = "0.2.0"
|
|
esp_idf_build = "0.1.3"
|
|
chrono = { version = "0.4.23", default-features = false , features = ["iana-time-zone"] }
|
|
chrono-tz = {version="0.8.0", default-features = false , features = [ "filter-by-regex" ]}
|
|
embedded-hal = "0.2.7"
|
|
#shift-register-driver = "0.1.1"
|
|
one-wire-bus = "0.1.1"
|
|
anyhow = { version = "1.0.75", features = ["std", "backtrace"] }
|
|
schemars = "0.8.16"
|
|
heapless = { version = "0.7", features = ["serde"] }
|
|
serde_json = "1.0.108"
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
#?bq34z100 required
|
|
|
|
[build-dependencies]
|
|
embuild = "0.31.3"
|
|
vergen = { version = "8.2.6", features = ["build", "git", "gitcl"] }
|