Fixups
This commit is contained in:
parent
bcb57c8b71
commit
731710245f
6 changed files with 800 additions and 844 deletions
805
Cargo.lock
generated
805
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -61,16 +61,16 @@ tokio = { version = "1", features = [
|
||||||
"fs",
|
"fs",
|
||||||
"io-util",
|
"io-util",
|
||||||
] }
|
] }
|
||||||
governor = "0.7"
|
governor = "0.8"
|
||||||
console-subscriber = { version = "0.4", optional = true }
|
console-subscriber = { version = "0.4", optional = true }
|
||||||
axum = { version = "0.7", optional = true }
|
axum = { version = "0.8", optional = true }
|
||||||
tower-http = { version = "0.5", features = ["cors", "trace"], optional = true }
|
tower-http = { version = "0.6", features = ["cors", "trace"], optional = true }
|
||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
serde_urlencoded = "0.7"
|
serde_urlencoded = "0.7"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
itertools = "0.13"
|
itertools = "0.14"
|
||||||
http = "1"
|
http = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
reqwest = { version = "0.12", default-features = false, features = [
|
reqwest = { version = "0.12", default-features = false, features = [
|
||||||
|
|
@ -109,7 +109,7 @@ mime_guess = { version = "2.0.5", default-features = false }
|
||||||
tokio-socks = "0.5.2"
|
tokio-socks = "0.5.2"
|
||||||
async-trait = "0.1.81"
|
async-trait = "0.1.81"
|
||||||
async-backtrace = { version = "0.2", optional = true }
|
async-backtrace = { version = "0.2", optional = true }
|
||||||
notify = { version = "6.1.1", optional = true }
|
notify = { version = "7", optional = true }
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
arc-swap = "1.7.1"
|
arc-swap = "1.7.1"
|
||||||
|
|
||||||
|
|
|
||||||
823
crates/librqbit/webui/package-lock.json
generated
823
crates/librqbit/webui/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"] }
|
||||||
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
|
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
|
||||||
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.0.1" }
|
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" }
|
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
|
||||||
itertools = "0.13"
|
itertools = "0.14"
|
||||||
directories = "5"
|
directories = "5"
|
||||||
tokio-util = "0.7.10"
|
tokio-util = "0.7.10"
|
||||||
data-encoding = "2.6.0"
|
data-encoding = "2.6.0"
|
||||||
|
|
|
||||||
|
|
@ -20,4 +20,4 @@ librqbit-core = { path = "../librqbit_core", default-features = false, version =
|
||||||
bitvec = "1"
|
bitvec = "1"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
bytes = "1.7.1"
|
bytes = "1.7.1"
|
||||||
itertools = "0.13"
|
itertools = "0.14"
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ sha1-ring = ["librqbit-sha1-wrapper/sha1-ring", "librqbit-core/sha1-ring"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
axum = { version = "0.7", features = ["tokio"] }
|
axum = { version = "0.8", features = ["tokio"] }
|
||||||
tokio = { version = "1.39.3", features = ["full"] }
|
tokio = { version = "1.39.3", features = ["full"] }
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
bstr = "1.10.0"
|
bstr = "1.10.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue