2023-11-20 00:05:47 +01:00
|
|
|
[package]
|
|
|
|
name = "plant-ctrl2"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Empire Phoenix"]
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
rust-version = "1.71"
|
|
|
|
|
2024-04-21 20:17:08 +02:00
|
|
|
[profile.dev]
|
2023-11-23 22:50:17 +01:00
|
|
|
# Explicitly disable LTO which the Xtensa codegen backend has issues
|
2024-04-21 20:17:08 +02:00
|
|
|
lto = true
|
2023-11-23 22:50:17 +01:00
|
|
|
strip = false
|
2024-04-22 13:03:42 +02:00
|
|
|
debug = true
|
2023-11-27 00:05:09 +01:00
|
|
|
overflow-checks = true
|
2024-04-21 20:17:08 +02:00
|
|
|
panic = "abort"
|
2023-11-27 00:05:09 +01:00
|
|
|
incremental = true
|
2023-11-20 00:05:47 +01:00
|
|
|
opt-level = "s"
|
2024-04-21 20:17:08 +02:00
|
|
|
|
|
|
|
[profile.dev.build-override]
|
|
|
|
opt-level = 1
|
2023-11-27 00:05:09 +01:00
|
|
|
incremental = true
|
2023-11-20 00:05:47 +01:00
|
|
|
|
2023-11-23 22:50:17 +01:00
|
|
|
[package.metadata.cargo_runner]
|
|
|
|
# The string `$TARGET_FILE` will be replaced with the path from cargo.
|
|
|
|
command = [
|
|
|
|
"cargo",
|
|
|
|
"espflash",
|
|
|
|
"save-image",
|
|
|
|
"--chip",
|
2024-04-21 20:17:08 +02:00
|
|
|
"esp32c6",
|
2023-11-23 22:50:17 +01:00
|
|
|
"image.bin"
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.espflash]
|
2023-11-29 18:27:23 +01:00
|
|
|
partition_table = "partitions.csv"
|
2023-11-23 22:50:17 +01:00
|
|
|
|
2023-11-20 00:05:47 +01:00
|
|
|
[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 }
|
|
|
|
serde = { version = "1.0.192", features = ["derive"] }
|
|
|
|
average = { version = "0.14.1" , features = ["std"] }
|
2023-12-22 01:35:08 +01:00
|
|
|
#esp32 = "0.28.0"
|
2023-11-20 00:05:47 +01:00
|
|
|
bit_field = "0.10.2"
|
|
|
|
ds18b20 = "0.1.1"
|
2024-02-15 23:00:05 +01:00
|
|
|
embedded-svc = { version = "0.27.0", features = ["experimental"] }
|
|
|
|
esp-idf-hal = "0.43.0"
|
|
|
|
esp-idf-sys = { version = "0.34.0", features = ["binstart", "native"] }
|
2024-04-26 18:52:53 +02:00
|
|
|
esp-idf-svc = { version = "0.48.0", default-features = false }
|
2023-11-20 00:05:47 +01:00
|
|
|
esp_idf_build = "0.1.3"
|
2024-02-17 17:25:50 +01:00
|
|
|
chrono = { version = "0.4.23", default-features = false , features = ["iana-time-zone" , "alloc"] }
|
2023-11-23 22:50:17 +01:00
|
|
|
chrono-tz = {version="0.8.0", default-features = false , features = [ "filter-by-regex" ]}
|
2024-02-15 23:00:05 +01:00
|
|
|
embedded-hal = "1.0.0"
|
2023-11-21 01:05:12 +01:00
|
|
|
one-wire-bus = "0.1.1"
|
2023-11-23 22:50:17 +01:00
|
|
|
anyhow = { version = "1.0.75", features = ["std", "backtrace"] }
|
2023-11-27 01:07:07 +01:00
|
|
|
schemars = "0.8.16"
|
2024-02-15 23:00:05 +01:00
|
|
|
heapless = { version = "0.8", features = ["serde"] }
|
2023-12-12 03:46:53 +01:00
|
|
|
serde_json = "1.0.108"
|
2024-02-15 23:00:05 +01:00
|
|
|
strum = { version = "0.26.1", features = ["derive"] }
|
2023-12-27 20:00:06 +01:00
|
|
|
once_cell = "1.19.0"
|
2024-01-17 21:25:01 +01:00
|
|
|
measurements = "0.11.0"
|
2024-02-21 22:30:03 +01:00
|
|
|
bq34z100 = "0.2.1"
|
2024-04-27 19:58:56 +02:00
|
|
|
bitbang-hal = "0.3.2"
|
2023-11-20 00:05:47 +01:00
|
|
|
|
2024-04-26 18:52:53 +02:00
|
|
|
[patch.crates-io]
|
|
|
|
esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal.git" }
|
2024-04-27 19:58:56 +02:00
|
|
|
#esp-idf-sys = { git = "https://github.com/empirephoenix/esp-idf-sys.git" }
|
|
|
|
#esp-idf-sys = { git = "https://github.com/esp-rs/esp-idf-sys.git" }
|
|
|
|
#esp-idf-svc = { git = "https://github.com/esp-rs/esp-idf-svc.git" }
|
2024-04-26 18:52:53 +02:00
|
|
|
|
2023-11-20 00:05:47 +01:00
|
|
|
[build-dependencies]
|
|
|
|
embuild = "0.31.3"
|
2023-11-30 19:26:03 +01:00
|
|
|
vergen = { version = "8.2.6", features = ["build", "git", "gitcl"] }
|