Skip to content

Commit 9859b53

Browse files
zdzCopilot
andcommitted
fix: resolve Dependabot security vulnerabilities
- bytes 1.11.0 → 1.11.1 (integer overflow in BytesMut::reserve, RUSTSEC-2026-0007) - ring 0.17.8 → 0.17.12 (AES panic with overflow checking, RUSTSEC-2025-0009) - time 0.3.36 → 0.3.47 (DoS via stack exhaustion, RUSTSEC-2026-0009) - Remove unused direct dep rustls-pemfile (unmaintained, RUSTSEC-2025-0134) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 40082f2 commit 9859b53

3 files changed

Lines changed: 17 additions & 37 deletions

File tree

Cargo.lock

Lines changed: 16 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ prost = "0.14.3"
3838
regex = "1.12.2"
3939
reqwest = {version = "0.13.1", features = ["json", "rustls", "brotli", "gzip", "deflate", "stream", "socks"], default-features = false}
4040
rustls = { version = "0.23.36", default-features = false }
41-
rustls-pemfile = { version = "2.2.0" }
4241
serde = {version = "1.0.228", default-features = false, features = ["derive", "alloc"]}
4342
serde_json = {version = "1.0.149", default-features = false, features = ["alloc"]}
4443
stat_common = {path = "../common", version = "1.1.4"}

server/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,13 @@ md5 = "0.8.0"
3838
minijinja = {version = "2.15.1", features = ["json", "loader"]}
3939
mime_guess = { version = "2.0.5" }
4040
once_cell = "1.21.3"
41-
pki-types = { package = "rustls-pki-types", version = "1.14.0" }
41+
rustls-pki-types = { package = "rustls-pki-types", version = "1.14.0" }
4242
pretty_env_logger = "0.5.0"
4343
prettytable-rs = "^0.10.0"
4444
prost = "0.14.3"
4545
reqwest = {version = "0.13.1", features = ["json", "rustls"], default-features = false}
4646
rhai = {version = "1.24.0", features = ["sync", "metadata", "decimal", "no_function", "no_module", "no_closure", "unchecked"]}
4747
rust-embed = {version = "8.11.0", features = ["mime-guess"]}
48-
rustls-pemfile = { version = "2.2.0" }
4948
serde = {version = "1.0.228", default-features = false, features = ["derive", "alloc"]}
5049
serde_json = {version = "1.0.149", default-features = false, features = ["alloc"]}
5150
stat_common = {path = "../common", version = "1.1.4"}

0 commit comments

Comments
 (0)