Skip to content

Commit ae82983

Browse files
authored
Merge branch 'main' into fix-CVE-2025-62518
2 parents 5af1623 + c4e1940 commit ae82983

File tree

3 files changed

+45
-16
lines changed

3 files changed

+45
-16
lines changed

Cargo.lock

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

crates/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/pkgxdev/pkgx"
99

1010
[dependencies]
1111
tokio = { version = "1.43", features = ["full", "rt-multi-thread"] }
12-
rusqlite = "0.37.0"
12+
rusqlite = "0.38.0"
1313
regex = "1.11.1"
1414
indicatif = "0.18.3"
1515
nix = { version = "0.31.1", features = ["process"] }
@@ -21,7 +21,7 @@ console = { version = "0.16", default-features = false, features = [
2121
] }
2222

2323
[target.'cfg(not(target_os = "macos"))'.dependencies]
24-
rusqlite = { version = "0.37.0", features = ["bundled"] }
24+
rusqlite = { version = "0.38.0", features = ["bundled"] }
2525
native-tls = { version = "0.2", features = ["vendored"] }
2626
# ^^ this is a transitive dependency
2727
# ^^ we vendor OpenSSL ∵ we want to be standalone and just work inside minimal docker images

crates/lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tokio = { version = "1.43", features = ["full", "rt-multi-thread"] }
2020
tokio-stream = "0.1"
2121
strum = "0.27"
2222
strum_macros = "0.27"
23-
rusqlite = "0.37.0"
23+
rusqlite = "0.38.0"
2424
regex = "1.11.1"
2525
reqwest = { version = "0.13", features = ["stream", "blocking"] }
2626
async-compression = { version = "0.4", features = ["tokio", "gzip", "xz"] }
@@ -33,4 +33,4 @@ fs2 = "0.4.3"
3333
tempfile = "3.16.0"
3434

3535
[target.'cfg(not(target_os = "macos"))'.dependencies]
36-
rusqlite = { version = "0.37.0", features = ["bundled"] }
36+
rusqlite = { version = "0.38.0", features = ["bundled"] }

0 commit comments

Comments
 (0)