Skip to content

Commit 48d00bb

Browse files
committed
Update dependencies
1 parent 0bb5aeb commit 48d00bb

File tree

4 files changed

+35
-41
lines changed

4 files changed

+35
-41
lines changed

Cargo.lock

+32-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-7
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ digest = "0.10.7"
5151
image = "0.25.5"
5252
jiff = "0.2.1"
5353
log = "0.4.26"
54-
log = "0.4.25"
5554
mime = "0.3.17"
5655
nonicle = "0.1.1"
5756
regex = "1.11.1"
@@ -69,18 +68,13 @@ url = "2.5.4"
6968
[workspace.lints.rust]
7069
# Opt-in for allowed-by-default lints (in alphabetical order)
7170
# See also: <https://doc.rust-lang.org/rustc/lints>
71+
deprecated-safe = { level = "warn", priority = -1 }
7272
future_incompatible = { level = "warn", priority = -1 }
7373
let_underscore = { level = "warn", priority = -1 }
7474
missing_debug_implementations = "warn"
75-
rust_2018_idioms = { level = "warn", priority = -1 }
76-
rust_2021_compatibility = { level = "warn", priority = -1 }
77-
rust_2024_compatibility = { level = "warn", priority = -1 }
7875
unreachable_pub = "warn"
7976
unsafe_code = "warn"
8077
unused = "warn"
81-
# Accept changed behavior in 2024 edition regarding temporary lifetimes and drop order.
82-
if_let_rescope = "allow"
83-
tail_expr_drop_order = "allow"
8478

8579
[workspace.lints.clippy]
8680
pedantic = { level = "warn", priority = -1 }

crates/backend-webapi-json/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ url.workspace = true
2626

2727
# tracing
2828
tracing = { version = "0.1.41", features = ["log"] }
29-
uuid = { version = "1.13.2", features = ["v4"] }
29+
uuid = { version = "1.14.0", features = ["v4"] }
3030

3131
# JSON Schema (optional)
3232
schemars = { version = "0.8.21", optional = true }

websrv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ anyhow.workspace = true
1919
directories = "6.0.0"
2020
discro = { version = "0.33.0", features = ["tokio"] }
2121
dotenvy = "0.15.7"
22-
log = { version = "0.4.25", features = ["release_max_level_debug"] }
22+
log = { version = "0.4.26", features = ["release_max_level_debug"] }
2323
parking_lot = "0.12.3"
2424
ron = "0.8.1"
2525
serde = { workspace = true, features = ["derive"] }

0 commit comments

Comments
 (0)