Skip to content

Commit 6b35a03

Browse files
fix(deps): update all non-major dependencies
1 parent 59114d6 commit 6b35a03

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
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.75.0 AS build
22

33
WORKDIR /src
44

crates/transmission-proxy/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ default-run = "transmission-proxy"
1010
transmission-rpc-client = "1.1.6"
1111

1212
async-session = "3.0.0"
13-
axum = { version = "0.6", features = ["headers"] }
13+
axum = { version = "0.7", features = ["headers"] }
1414
base64 = "0.21"
1515
bcrypt = "0.15"
1616
clap = { version = "4.4", features = ["derive", "env"] }
1717
color-eyre = "0.6"
18-
cookie = { version = "0.17", features = ["percent-encode"] }
19-
handlebars = "4.4"
18+
cookie = { version = "0.18", features = ["percent-encode"] }
19+
handlebars = "4.5"
2020
hmac = "0.12"
2121
hyper = { version = "0.14", features = ["full"] }
2222
jsonpath = "0.1.1"
@@ -33,12 +33,12 @@ 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.26", features = ["derive"] }
3737
thiserror = "1.0"
38-
tokio = { version = "1.33", features = ["net", "rt-multi-thread"] }
39-
tower-cookies = "0.9"
38+
tokio = { version = "1.36", features = ["net", "rt-multi-thread"] }
39+
tower-cookies = "0.10"
4040
tracing = "0.1"
4141
tracing-error = "0.2"
4242
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
43-
url = "2.4"
43+
url = "2.5"
4444
urlencoding = "2.1"

crates/transmission-rpc-client/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ 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.26", features = ["derive"] }
2020

2121
# client features
2222
reqwest = { version = "0.11", optional = true, features = ["json"] }
2323
thiserror = { version = "1", optional = true }
24-
url = { version = "2.4", optional = true }
24+
url = { version = "2.5", optional = true }
2525

2626
[features]
2727
default = []
2828
client = ["reqwest", "thiserror", "url"]
2929

3030
[dev-dependencies]
3131
anyhow = "1"
32-
tokio = { version = "1.33", features = ["macros"] }
32+
tokio = { version = "1.36", features = ["macros"] }

rust-toolchain.toml

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

0 commit comments

Comments
 (0)