Skip to content

Commit 0653dbd

Browse files
fix(deps): update all non-major dependencies
1 parent c44c941 commit 0653dbd

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/rust:1.73.0 AS build
1+
FROM docker.io/library/rust:1.84.1 AS build
22

33
WORKDIR /src
44

crates/transmission-proxy/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,33 @@ default-run = "transmission-proxy"
1010
transmission-rpc-client = "1.2.1"
1111

1212
async-session = "3.0.0"
13-
axum = { version = "0.6", features = ["headers"] }
14-
base64 = "0.21"
15-
bcrypt = "0.15"
13+
axum = { version = "0.8", features = ["headers"] }
14+
base64 = "0.22"
15+
bcrypt = "0.17"
1616
clap = { version = "4.4", features = ["derive", "env"] }
1717
color-eyre = "0.6"
18-
cookie = { version = "0.17", features = ["percent-encode"] }
18+
cookie = { version = "0.18", features = ["percent-encode"] }
1919
handlebars = "4.4"
2020
hmac = "0.12"
2121
hyper = { version = "0.14", features = ["full"] }
2222
jsonpath = "0.1.1"
2323
jwt = "0.16"
2424
oauth2 = "4.4.2"
25-
rand = "0.8"
25+
rand = "0.9"
2626
regex = "1.10"
27-
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
28-
secrecy = "0.8"
27+
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
28+
secrecy = "0.10"
2929
serde = { version = "1", features = ["derive"] }
3030
serde_bencode = "0.2"
3131
serde_bytes = "0.11"
3232
serde_json = "1"
3333
serde_regex = "1.1"
3434
serde_yaml = "0.9"
3535
sha2 = "0.10"
36-
strum = { version = "0.25", features = ["derive"] }
36+
strum = { version = "0.27", features = ["derive"] }
3737
thiserror = "2.0"
3838
tokio = { version = "1.33", features = ["net", "rt-multi-thread"] }
39-
tower-cookies = "0.9"
39+
tower-cookies = "0.11"
4040
tracing = "0.1"
4141
tracing-error = "0.2"
4242
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

crates/transmission-rpc-client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ required-features = ["client"]
1616
[dependencies]
1717
serde = { version = "1", features = ["derive"] }
1818
serde_json = "1"
19-
strum = { version = "0.25", features = ["derive"] }
19+
strum = { version = "0.27", features = ["derive"] }
2020

2121
# client features
22-
reqwest = { version = "0.11", optional = true, features = ["json"] }
22+
reqwest = { version = "0.12", optional = true, features = ["json"] }
2323
thiserror = { version = "2", optional = true }
2424
url = { version = "2.4", optional = true }
2525

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.76.0"
2+
channel = "1.84.1"
33
components = [
44
"rustfmt",
55
"clippy",

0 commit comments

Comments
 (0)