Removed unneeded dependencies

This commit is contained in:
Dreaded_X 2023-09-16 04:13:29 +02:00
parent f1321a696a
commit 6989c365cc
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4
2 changed files with 1 additions and 12 deletions

4
Cargo.lock generated
View File

@ -1774,15 +1774,11 @@ dependencies = [
"embassy-rp", "embassy-rp",
"embassy-sync", "embassy-sync",
"embassy-time", "embassy-time",
"embedded-io-async",
"embedded-storage",
"embedded-tls",
"git-version", "git-version",
"heapless 0.7.16", "heapless 0.7.16",
"nourl", "nourl",
"panic-probe", "panic-probe",
"rand", "rand",
"reqwless",
"rust-mqtt", "rust-mqtt",
"serde", "serde",
"serde-json-core", "serde-json-core",

View File

@ -16,7 +16,7 @@ embassy-executor = { version = "0.3", features = [
"nightly", "nightly",
"integrated-timers", "integrated-timers",
] } ] }
embassy-embedded-hal = { version = "0.1", features = ["defmt", "nightly"]} embassy-embedded-hal = { version = "0.1", features = ["defmt", "nightly"] }
embassy-rp = { version = "0.1", features = [ embassy-rp = { version = "0.1", features = [
"defmt", "defmt",
"unstable-traits", "unstable-traits",
@ -57,7 +57,6 @@ cyw43-pio = { git = "https://github.com/embassy-rs/embassy", features = [
panic-probe = { version = "0.3", features = ["print-defmt"] } panic-probe = { version = "0.3", features = ["print-defmt"] }
static_cell = { version = "1.1", features = ["nightly"] } static_cell = { version = "1.1", features = ["nightly"] }
heapless = { version = "0.7.16", features = ["defmt", "serde"] } heapless = { version = "0.7.16", features = ["defmt", "serde"] }
embedded-io-async = { version = "0.5", features = ["defmt-03"] }
dsmr5 = "0.3" dsmr5 = "0.3"
rust-mqtt = { version = "0.1.5", features = [ rust-mqtt = { version = "0.1.5", features = [
"defmt", "defmt",
@ -79,14 +78,8 @@ smoltcp = { version = "0.10.0", default-features = false, features = [
"dns-max-server-count-4", "dns-max-server-count-4",
] } ] }
nourl = { version = "0.1.1", features = ["defmt"] } nourl = { version = "0.1.1", features = ["defmt"] }
reqwless = { version = "0.5.0", features = ["defmt"] }
embedded-storage = "0.3.0"
const_format = "0.2.31" const_format = "0.2.31"
git-version = "0.3.5" git-version = "0.3.5"
embedded-tls = { version = "0.15.0", default-features = false, features = [
"async",
"defmt",
] }
updater = { path = "../iot_tools/updater" } updater = { path = "../iot_tools/updater" }