diff --git a/Cargo.lock b/Cargo.lock index 0cf87fd..b9137be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2398,6 +2398,9 @@ name = "hashbrown" version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" +dependencies = [ + "foldhash 0.2.0", +] [[package]] name = "hashlink" @@ -2408,6 +2411,15 @@ dependencies = [ "hashbrown 0.16.1", ] +[[package]] +name = "hashlink" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5081f264ed7adee96ea4b4778b6bb9da0a7228b084587aa3bd3ff05da7c5a3b" +dependencies = [ + "hashbrown 0.17.0", +] + [[package]] name = "heck" version = "0.5.0" @@ -3090,9 +3102,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1" +checksum = "f6c19a05435c21ac299d71b6a9c13db3e3f47c520517d58990a462a1397a61db" dependencies = [ "cc", "pkg-config", @@ -4289,14 +4301,14 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.39.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e" +checksum = "11438310b19e3109b6446c33d1ed5e889428cf2e278407bc7896bc4aaea43323" dependencies = [ "bitflags 2.11.1", "fallible-iterator", "fallible-streaming-iterator", - "hashlink", + "hashlink 0.12.0", "libsqlite3-sys", "smallvec", "sqlite-wasm-rs", @@ -6359,7 +6371,7 @@ checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e" dependencies = [ "arraydeque", "encoding_rs", - "hashlink", + "hashlink 0.11.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index f15b89a..19d9dcd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,7 +70,7 @@ cli-framework = { git = "https://github.com/aroff/cli-framework", rev = "76a83e0 validator = { version = "0.20", features = ["derive"] } # SQLite for vector index -rusqlite = { version = "0.39", features = ["bundled"] } +rusqlite = { version = "0.40", features = ["bundled"] } # SHA256 hashing for file integrity sha2 = "0.10"