traccer-no-std/Cargo.toml

39 lines
995 B
TOML
Raw Permalink Normal View History

[package]
name = "traccer_no_std"
version = "0.1.0"
authors = ["Vladan Popovic <vladanovic@gmail.com>"]
edition = "2021"
license = "-"
[dependencies]
esp-backtrace = { version = "0.8.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-println = { version = "0.6.0", features = ["esp32"] }
2023-09-25 02:12:22 +02:00
atat = { path = "../atat/atat", features = ["log", "async"] }
atat_derive = { path = "../atat/atat_derive" }
serde_at = { path = "../atat/serde_at" }
heapless = "0.7.16"
embassy-time = "0.1.3"
embedded-io-async = "0.5.0"
static_cell = "1.2.0"
embassy-executor = { version = "0.3.0", features = ["nightly"] }
[dependencies.hal]
package = "esp32-hal"
git = "https://github.com/esp-rs/esp-hal/"
features = [
"async",
"embassy",
"embassy-executor-thread",
"embassy-time",
"embassy-time-timg0",
]
[dependencies.esp-hal-common]
package = "esp-hal-common"
git = "https://github.com/esp-rs/esp-hal/"
features = [
"async",
"esp32",
"esp32_40mhz",
]