Skip to main content

max / goingson

Sync Cargo.lock: pull in rusqlite via synckit-client store feature synckit-client 5b3cd290 added an optional, default-on `store` feature that depends on rusqlite. GoingsOn consumes synckit-client as a path dependency, so the lockfile now resolves the rusqlite chain (fallible-iterator, fallible-streaming-iterator, hashlink, ahash, hashbrown). Lock-only catch-up to an already-committed upstream change; no Cargo.toml change. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-13 12:03 UTC
Commit: 6de950702b3fefc3043139bb86efb74f16df3da8
Parent: fbe4a5e
1 file changed, +58 insertions, -1 deletion
M Cargo.lock +58 -1
@@ -19,6 +19,18 @@ dependencies = [
19 19 ]
20 20
21 21 [[package]]
22 + name = "ahash"
23 + version = "0.8.12"
24 + source = "registry+https://github.com/rust-lang/crates.io-index"
25 + checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
26 + dependencies = [
27 + "cfg-if",
28 + "once_cell",
29 + "version_check",
30 + "zerocopy",
31 + ]
32 +
33 + [[package]]
22 34 name = "aho-corasick"
23 35 version = "1.1.4"
24 36 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1299,6 +1311,18 @@ dependencies = [
1299 1311 ]
1300 1312
1301 1313 [[package]]
1314 + name = "fallible-iterator"
1315 + version = "0.3.0"
1316 + source = "registry+https://github.com/rust-lang/crates.io-index"
1317 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1318 +
1319 + [[package]]
1320 + name = "fallible-streaming-iterator"
1321 + version = "0.1.9"
1322 + source = "registry+https://github.com/rust-lang/crates.io-index"
1323 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
1324 +
1325 + [[package]]
1302 1326 name = "fastrand"
1303 1327 version = "2.3.0"
1304 1328 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1997,6 +2021,15 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1997 2021
1998 2022 [[package]]
1999 2023 name = "hashbrown"
2024 + version = "0.14.5"
2025 + source = "registry+https://github.com/rust-lang/crates.io-index"
2026 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2027 + dependencies = [
2028 + "ahash",
2029 + ]
2030 +
2031 + [[package]]
2032 + name = "hashbrown"
2000 2033 version = "0.15.5"
2001 2034 source = "registry+https://github.com/rust-lang/crates.io-index"
2002 2035 checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
@@ -2014,6 +2047,15 @@ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2014 2047
2015 2048 [[package]]
2016 2049 name = "hashlink"
2050 + version = "0.9.1"
2051 + source = "registry+https://github.com/rust-lang/crates.io-index"
2052 + checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
2053 + dependencies = [
2054 + "hashbrown 0.14.5",
2055 + ]
2056 +
2057 + [[package]]
2058 + name = "hashlink"
2017 2059 version = "0.10.0"
2018 2060 source = "registry+https://github.com/rust-lang/crates.io-index"
2019 2061 checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
@@ -4462,6 +4504,20 @@ dependencies = [
4462 4504 ]
4463 4505
4464 4506 [[package]]
4507 + name = "rusqlite"
4508 + version = "0.32.1"
4509 + source = "registry+https://github.com/rust-lang/crates.io-index"
4510 + checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
4511 + dependencies = [
4512 + "bitflags 2.11.0",
4513 + "fallible-iterator",
4514 + "fallible-streaming-iterator",
4515 + "hashlink 0.9.1",
4516 + "libsqlite3-sys",
4517 + "smallvec",
4518 + ]
4519 +
4520 + [[package]]
4465 4521 name = "rustc-hash"
4466 4522 version = "2.1.2"
4467 4523 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -5168,7 +5224,7 @@ dependencies = [
5168 5224 "futures-io",
5169 5225 "futures-util",
5170 5226 "hashbrown 0.15.5",
5171 - "hashlink",
5227 + "hashlink 0.10.0",
5172 5228 "indexmap 2.13.0",
5173 5229 "log",
5174 5230 "memchr",
@@ -5497,6 +5553,7 @@ dependencies = [
5497 5553 "parking_lot",
5498 5554 "rand 0.9.2",
5499 5555 "reqwest 0.12.28",
5556 + "rusqlite",
5500 5557 "serde",
5501 5558 "serde_json",
5502 5559 "sha2",