chore: drop unused dependency

This commit is contained in:
Ilya Zlobintsev 2024-06-08 11:12:19 +03:00
parent fa521fd8c7
commit 0d675c5b3a
4 changed files with 3 additions and 13 deletions

10
Cargo.lock generated
View File

@ -293,15 +293,6 @@ dependencies = [
"rustc-demangle",
]
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bitflags"
version = "1.3.2"
@ -1591,7 +1582,6 @@ version = "0.5.5"
dependencies = [
"amdgpu-sysfs",
"anyhow",
"bincode",
"chrono",
"futures",
"lact-schema",

View File

@ -20,6 +20,7 @@ anyhow = "1.0.79"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
nix = { version = "0.29.0", default-features = false }
chrono = "0.4.31"
[profile.release]
strip = "symbols"

View File

@ -18,8 +18,8 @@ serde_with = { workspace = true }
serde_json = { workspace = true }
tracing-subscriber = { workspace = true }
nix = { workspace = true, features = ["user", "fs"] }
chrono = { workspace = true }
bincode = "1.3"
pciid-parser = { version = "0.7", features = ["serde"] }
serde_yaml = "0.9"
tokio = { version = "1.35.1", features = [
@ -36,6 +36,5 @@ zbus = { version = "4.1.2", default-features = false, features = ["tokio"] }
libdrm_amdgpu_sys = { optional = true, version = "0.7.3" }
tar = "0.4.40"
libflate = "2.0.0"
chrono = "0.4.31"
os-release = "0.1.0"
notify = { version = "6.1.1", default-features = false }

View File

@ -17,6 +17,7 @@ amdgpu-sysfs = { workspace = true }
tracing = { workspace = true }
anyhow = { workspace = true }
tracing-subscriber = { workspace = true }
chrono = { workspace = true }
gtk = { version = "0.8", package = "gtk4", features = ["v4_6", "blueprint"] }
adw = { package = "libadwaita", version = "0.6.0", features = [
@ -31,7 +32,6 @@ plotters = { version = "0.3.5", default-features = false, features = [
"full_palette",
] }
plotters-cairo = "0.6.0"
chrono = "0.4"
itertools = "0.13.0"
[dev-dependencies]