diff --git a/crates/transmission-proxy/Cargo.toml b/crates/transmission-proxy/Cargo.toml index d47bbb7..f7ad2c5 100644 --- a/crates/transmission-proxy/Cargo.toml +++ b/crates/transmission-proxy/Cargo.toml @@ -10,22 +10,22 @@ default-run = "transmission-proxy" transmission-rpc-client = "1.2.1" async-session = "3.0.0" -axum = { version = "0.6", features = ["headers"] } -base64 = "0.21" -bcrypt = "0.15" +axum = { version = "0.8", features = ["headers"] } +base64 = "0.22" +bcrypt = "0.17" clap = { version = "4.4", features = ["derive", "env"] } color-eyre = "0.6" -cookie = { version = "0.17", features = ["percent-encode"] } +cookie = { version = "0.18", features = ["percent-encode"] } handlebars = "4.4" hmac = "0.12" hyper = { version = "0.14", features = ["full"] } jsonpath = "0.1.1" jwt = "0.16" oauth2 = "4.4.2" -rand = "0.8" +rand = "0.9" regex = "1.10" -reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] } -secrecy = "0.8" +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] } +secrecy = "0.10" serde = { version = "1", features = ["derive"] } serde_bencode = "0.2" serde_bytes = "0.11" @@ -33,10 +33,10 @@ serde_json = "1" serde_regex = "1.1" serde_yaml = "0.9" sha2 = "0.10" -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } thiserror = "2.0" tokio = { version = "1.33", features = ["net", "rt-multi-thread"] } -tower-cookies = "0.9" +tower-cookies = "0.11" tracing = "0.1" tracing-error = "0.2" tracing-subscriber = { version = "0.3", features = ["env-filter"] } diff --git a/crates/transmission-rpc-client/Cargo.toml b/crates/transmission-rpc-client/Cargo.toml index ae8faa1..c64b667 100644 --- a/crates/transmission-rpc-client/Cargo.toml +++ b/crates/transmission-rpc-client/Cargo.toml @@ -16,10 +16,10 @@ required-features = ["client"] [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" -strum = { version = "0.25", features = ["derive"] } +strum = { version = "0.27", features = ["derive"] } # client features -reqwest = { version = "0.11", optional = true, features = ["json"] } +reqwest = { version = "0.12", optional = true, features = ["json"] } thiserror = { version = "2", optional = true } url = { version = "2.4", optional = true }