Upgraded all dependencies to latest.

This commit is contained in:
Filipe Rodrigues 2023-06-30 23:53:37 +01:00
parent 469e62a506
commit b5251cf028
2 changed files with 434 additions and 266 deletions

668
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,40 +6,40 @@ version = "0.1.1"
[dependencies]
# 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"
tokio = { version = "1.29.1", features = ["full"] }
tokio-stream = "0.1.14"
async-broadcast = "0.5.1"
async-recursion = "1.0.4"
futures = "0.3.28"
# Concurrency
dashmap = "5.4.0"
# Cmd
clap = { version = "4.0.32", features = ["derive"] }
clap = { version = "4.3.10", features = ["derive"] }
# Logging
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
# Error handling
anyhow = "1.0.68"
thiserror = "1.0.38"
anyhow = "1.0.71"
thiserror = "1.0.40"
# Serde
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.16"
serde = { version = "1.0.164", features = ["derive"] }
serde_yaml = "0.9.22"
# File system
notify = "5.0.0"
notify-debouncer-mini = "0.2.1"
filetime = "0.2.19"
notify = "6.0.1"
notify-debouncer-mini = "0.3.0"
filetime = "0.2.21"
# Util
itertools = "0.10.5"
itertools = "0.11.0"
npath = { git = "https://github.com/gdzx/npath", rev = "00acdd2974bb1682b6d1dcc6f0ea7cd54da42381" }
pin-project = "1.0.12"
pin-project = "1.1.1"
[lints]