Removed serde dependency.

This commit is contained in:
Filipe Rodrigues 2025-01-30 02:06:38 +00:00
parent 0a37343f78
commit 0dc913ff61
Signed by: zenithsiz
SSH Key Fingerprint: SHA256:Mb5ppb3Sh7IarBO/sBTXLHbYEOz37hJAlslLQPPAPaU
2 changed files with 1 additions and 4 deletions

2
Cargo.lock generated
View File

@ -751,7 +751,6 @@ checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
dependencies = [
"equivalent",
"hashbrown 0.14.5",
"serde",
]
[[package]]
@ -1856,7 +1855,6 @@ dependencies = [
"notify",
"notify-debouncer-full",
"pin-project",
"serde",
"smallvec",
"tempdir",
"tokio",

View File

@ -16,12 +16,11 @@ clap = { version = "4.5.15", features = ["derive"] }
console-subscriber = { version = "0.4.0", optional = true }
dashmap = "6.0.1"
futures = "0.3.30"
indexmap = { version = "2.4.0", features = ["serde"] }
indexmap = { version = "2.4.0" }
itertools = "0.13.0"
notify = "6.1.1"
notify-debouncer-full = "0.3.1"
pin-project = "1.1.5"
serde = { version = "1.0.205", features = ["derive"] }
smallvec = { version = "1.13.2", features = ["may_dangle"] }
tokio = { version = "1.39.2", features = ["full"] }
tokio-stream = "0.1.15"