global: snapshot

This commit is contained in:
nym21
2025-10-26 22:30:41 +01:00
parent 7d01e9e91e
commit 82e59d409e
34 changed files with 2192 additions and 1090 deletions
Generated
+145
View File
@@ -653,6 +653,7 @@ dependencies = [
"log",
"pco",
"rayon",
"rustc-hash",
"serde",
"vecdb",
"zerocopy",
@@ -798,6 +799,7 @@ dependencies = [
"schemars",
"serde",
"serde_json",
"tokio",
"vecdb",
]
@@ -1261,6 +1263,7 @@ dependencies = [
"brk_types",
"byteview 0.6.1",
"byteview 0.8.0",
"candystore",
"log",
"parking_lot 0.12.5",
"rustc-hash",
@@ -1350,6 +1353,26 @@ dependencies = [
"allocator-api2",
]
[[package]]
name = "bytemuck"
version = "1.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
version = "1.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.108",
]
[[package]]
name = "byteorder"
version = "1.5.0"
@@ -1374,6 +1397,26 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e6b0e42e210b794e14b152c6fe1a55831e30ef4a0f5dc39d73d714fb5f1906c"
[[package]]
name = "candystore"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "304e90a814421e59b7e986f06d6d9041ecddeb28ce8bcc0a20bbf0091f22d0f0"
dependencies = [
"anyhow",
"bytemuck",
"crossbeam-channel",
"databuf",
"fslock",
"libc",
"memmap",
"parking_lot 0.12.5",
"rand 0.9.2",
"simd-itertools",
"siphasher",
"uuid",
]
[[package]]
name = "castaway"
version = "0.2.4"
@@ -1761,6 +1804,34 @@ dependencies = [
"parking_lot_core 0.9.12",
]
[[package]]
name = "databuf"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1ad1d99bee317a8dac0b7cd86896c5a5f24307009292985dabbf3e412c8b9d"
dependencies = [
"databuf-derive",
]
[[package]]
name = "databuf-derive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04040c9fc8fcb4084222a26c99faf5b3014772a6115e076b7a50fe49bf25d0ea"
dependencies = [
"databuf_derive_impl",
]
[[package]]
name = "databuf_derive_impl"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf656eb071fe87d23716f933788a35a8ad6baa6fdbf66a67a261dbd3f9dc81a"
dependencies = [
"quote2",
"syn 2.0.108",
]
[[package]]
name = "deranged"
version = "0.5.4"
@@ -2067,6 +2138,16 @@ dependencies = [
"libc",
]
[[package]]
name = "fslock"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "futures"
version = "0.3.31"
@@ -2777,6 +2858,16 @@ version = "2.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
[[package]]
name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "memmap2"
version = "0.9.9"
@@ -2827,6 +2918,28 @@ dependencies = [
"windows-sys 0.61.2",
]
[[package]]
name = "multiversion"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7edb7f0ff51249dfda9ab96b5823695e15a052dc15074c9dbf3d118afaf2c201"
dependencies = [
"multiversion-macros",
"target-features",
]
[[package]]
name = "multiversion-macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b093064383341eb3271f42e381cb8f10a01459478446953953c75d24bd339fc0"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.108",
"target-features",
]
[[package]]
name = "munge"
version = "0.4.7"
@@ -3824,6 +3937,23 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "quote2"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "970573b86f7e5795c8c6c50c56ef602368593f0687188da27fd489a59e253630"
dependencies = [
"proc-macro2",
"quote",
"quote2-macros",
]
[[package]]
name = "quote2-macros"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4b89c37b2d870a28629ad20da669bb0e7d7214878d0d5111b304aa466e1977"
[[package]]
name = "r-efi"
version = "5.3.0"
@@ -4412,6 +4542,15 @@ version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
[[package]]
name = "simd-itertools"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a037ed5ba0cb7102a5b720453b642c5b2cf39960edd2ceace91af8ec3743082a"
dependencies = [
"multiversion",
]
[[package]]
name = "simdutf8"
version = "0.1.5"
@@ -4603,6 +4742,12 @@ dependencies = [
"syn 2.0.108",
]
[[package]]
name = "target-features"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
[[package]]
name = "tempfile"
version = "3.23.0"