diff --git a/Cargo.lock b/Cargo.lock index 0cd1217..109a181 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,6 +875,15 @@ dependencies = [ "hashbrown 0.16.1", ] +[[package]] +name = "hashlink" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248" +dependencies = [ + "hashbrown 0.17.1", +] + [[package]] name = "heck" version = "0.5.0" @@ -1069,9 +1078,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libsqlite3-sys" -version = "0.37.0" +version = "0.38.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1" +checksum = "f1d20bef17f513b9b3004532233187769cd072d790971f4e4da0e346eb6401e8" dependencies = [ "cc", "pkg-config", @@ -1813,14 +1822,14 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.39.0" +version = "0.40.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e" +checksum = "23f2a97da3e3873c73cb2a2e71b35c40ff95e0b1eefa8d72d8499a6928c3b5b3" dependencies = [ "bitflags 2.13.0", "fallible-iterator", "fallible-streaming-iterator", - "hashlink", + "hashlink 0.12.1", "libsqlite3-sys", "smallvec", "sqlite-wasm-rs", @@ -2746,7 +2755,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e" dependencies = [ "arraydeque", - "hashlink", + "hashlink 0.11.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 81757ce..2f9de67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ rustyline = "18.0.1" # system-library dependency; it remains outside the default build. Keep the # 0.39 series while Rust 1.89 is the MSRV: 0.40 pulls a build script that uses # the unstable `cfg_select` macro. -rusqlite = { version = "0.39.0", features = ["bundled"], optional = true } +rusqlite = { version = "0.40.2", features = ["bundled"], optional = true } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" # Small crate used only to obtain terminal width (Unix reuses transitive rustix).