48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "updater"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["inline-asm"] }
|
|
cortex-m-rt = "0.7"
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.4"
|
|
embassy-net = { version = "0.6", features = [
|
|
"tcp",
|
|
"dhcpv4",
|
|
"medium-ethernet",
|
|
"defmt",
|
|
"dns",
|
|
] }
|
|
embassy-boot = { version = "0.4", features = ["defmt", "ed25519-salty"] }
|
|
embassy-time = { version = "0.4", features = [
|
|
"defmt",
|
|
"defmt-timestamp-uptime",
|
|
] }
|
|
embassy-futures = { version = "0.1", features = ["defmt"] }
|
|
rand_core = "0.6"
|
|
embedded-io-async = { version = "0.6", features = ["defmt-03"] }
|
|
embedded-storage = "0.3"
|
|
rust-mqtt = { version = "0.3", features = [
|
|
"defmt",
|
|
"no_std",
|
|
"tls",
|
|
], default-features = false }
|
|
heapless = { version = "0.8", features = ["defmt-03", "serde"] }
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
serde-json-core = "0.6"
|
|
embedded-tls = { version = "0.17", default-features = false, features = [
|
|
"defmt",
|
|
] }
|
|
reqwless = { version = "0.13", features = ["defmt"] }
|
|
static_cell = { version = "2", features = ["nightly"] }
|
|
impl-tools = "0.10"
|
|
portable-atomic = { version = "1.6", features = ["critical-section"] }
|
|
picoserve = { version = "0.13.3", features = ["defmt", "embassy"] }
|
|
embassy-sync = { version = "0.6.1", features = ["defmt"] }
|
|
git-version = "0.3.9"
|
|
|
|
[patch.crates-io]
|
|
picoserve = { git = "https://github.com/hodasemi/picoserve" }
|