Cargo upgrade all deps

This commit is contained in:
Igor Katson 2024-08-28 11:44:01 +01:00
parent 3ef9dc6655
commit 52ca07fe41
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
7 changed files with 98 additions and 171 deletions

View file

@ -30,7 +30,7 @@ backoff = "0.4.0"
futures = "0.3"
rand = "0.8"
indexmap = "2"
dashmap = { version = "5.5.3", features = ["serde"] }
dashmap = { version = "6", features = ["serde"] }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "4" }
chrono = { version = "0.4.31", features = ["serde"] }

View file

@ -55,7 +55,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
anyhow = "1"
itertools = "0.12"
itertools = "0.13"
http = "1"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = [
@ -80,7 +80,7 @@ futures = "0.3"
url = "2"
hex = "0.4"
backoff = "0.4.0"
dashmap = "5.5.3"
dashmap = "6"
base64 = "0.22"
serde_with = "3.4.0"
tokio-util = { version = "0.7.10", features = ["io"] }

View file

@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"] }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.0.1" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
itertools = "0.12"
itertools = "0.13"
directories = "5"
tokio-util = "0.7.10"
data-encoding = "2.6.0"

View file

@ -20,4 +20,4 @@ librqbit-core = { path = "../librqbit_core", default-features = false, version =
bitvec = "1"
anyhow = "1"
bytes = "1.7.1"
itertools = "0.12"
itertools = "0.13"

View file

@ -23,13 +23,13 @@ debug_slow_disk = ["librqbit/storage_middleware"]
postgres = ["librqbit/postgres"]
[dependencies]
librqbit = { path = "../librqbit", default-features = false, features = [
librqbit = { version = "7.0.0", path = "../librqbit", default-features = false, features = [
"http-api",
"tracing-subscriber-utils",
"upnp-serve-adapter",
], version = "7.0.0" }
]}
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
console-subscriber = { version = "0.2", optional = true }
console-subscriber = { version = "0.4", optional = true }
anyhow = "1"
clap = { version = "4.5", features = ["derive", "deprecated", "env"] }
clap_complete = "4.5"