Removed unused dependencies.

Cleaned up `Cargo.toml` dependencies.
This commit is contained in:
Filipe Rodrigues 2023-01-01 22:46:56 +00:00
parent 6d7677d7bb
commit 1ba666d853
2 changed files with 13 additions and 34 deletions

24
Cargo.lock generated
View File

@ -42,12 +42,6 @@ version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.3.0"
@ -181,12 +175,6 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "fixedbitset"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]]
name = "fsevent-sys"
version = "4.1.0"
@ -551,16 +539,6 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "petgraph"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
dependencies = [
"fixedbitset",
"indexmap",
]
[[package]]
name = "pin-project"
version = "1.0.12"
@ -1074,7 +1052,6 @@ dependencies = [
"anyhow",
"async-broadcast",
"async-recursion",
"byteorder",
"clap",
"dashmap",
"filetime",
@ -1083,7 +1060,6 @@ dependencies = [
"notify",
"notify-debouncer-mini",
"npath",
"petgraph",
"pin-project",
"serde",
"serde_yaml",

View File

@ -7,6 +7,13 @@ version = "0.1.1"
# Futures
tokio = { version = "1.23.0", features = ["full"] }
tokio-stream = "0.1.11"
async-broadcast = "0.5.0"
async-recursion = "1.0.0"
futures = "0.3.25"
# Concurrency
dashmap = "5.4.0"
# Cmd
clap = { version = "4.0.32", features = ["derive"] }
@ -23,17 +30,13 @@ thiserror = "1.0.38"
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.16"
# Util
async-broadcast = "0.5.0"
async-recursion = "1.0.0"
byteorder = "1.4.3"
dashmap = "5.4.0"
filetime = "0.2.19"
futures = "0.3.25"
itertools = "0.10.5"
# File system
notify = "5.0.0"
notify-debouncer-mini = "0.2.1"
filetime = "0.2.19"
# Util
itertools = "0.10.5"
npath = { git = "https://github.com/gdzx/npath", rev = "00acdd2974bb1682b6d1dcc6f0ea7cd54da42381" }
petgraph = "0.6.2"
tokio-stream = "0.1.11"
pin-project = "1.0.12"