Skip to content

Commit bc8a2cd

Browse files
fix(deps): update all non-major dependencies
1 parent cfe27dc commit bc8a2cd

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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.74.0 AS build
22

33
WORKDIR /src
44

crates/transmission-proxy/Cargo.toml

+6-6
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"
@@ -35,10 +35,10 @@ serde_yaml = "0.9"
3535
sha2 = "0.10"
3636
strum = { version = "0.25", 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.34", 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ strum = { version = "0.25", features = ["derive"] }
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.34", 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.74.0"
33
components = [
44
"rustfmt",
55
"clippy",

0 commit comments

Comments
 (0)