Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 9, 2023
1 parent cfe27dc commit a2f2a30
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/rust:1.73.0 AS build
FROM docker.io/library/rust:1.74.1 AS build

WORKDIR /src

Expand Down
12 changes: 6 additions & 6 deletions crates/transmission-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ default-run = "transmission-proxy"
transmission-rpc-client = "1.1.6"

async-session = "3.0.0"
axum = { version = "0.6", features = ["headers"] }
axum = { version = "0.7", features = ["headers"] }
base64 = "0.21"
bcrypt = "0.15"
clap = { version = "4.4", features = ["derive", "env"] }
color-eyre = "0.6"
cookie = { version = "0.17", features = ["percent-encode"] }
handlebars = "4.4"
cookie = { version = "0.18", features = ["percent-encode"] }
handlebars = "4.5"
hmac = "0.12"
hyper = { version = "0.14", features = ["full"] }
jsonpath = "0.1.1"
Expand All @@ -35,10 +35,10 @@ serde_yaml = "0.9"
sha2 = "0.10"
strum = { version = "0.25", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1.33", features = ["net", "rt-multi-thread"] }
tower-cookies = "0.9"
tokio = { version = "1.35", features = ["net", "rt-multi-thread"] }
tower-cookies = "0.10"
tracing = "0.1"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.4"
url = "2.5"
urlencoding = "2.1"
4 changes: 2 additions & 2 deletions crates/transmission-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ strum = { version = "0.25", features = ["derive"] }
# client features
reqwest = { version = "0.11", optional = true, features = ["json"] }
thiserror = { version = "1", optional = true }
url = { version = "2.4", optional = true }
url = { version = "2.5", optional = true }

[features]
default = []
client = ["reqwest", "thiserror", "url"]

[dev-dependencies]
anyhow = "1"
tokio = { version = "1.33", features = ["macros"] }
tokio = { version = "1.35", features = ["macros"] }
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.0"
components = [
"rustfmt",
"clippy",
Expand Down

0 comments on commit a2f2a30

Please sign in to comment.