Reverting sqlite upgrade

This commit is contained in:
Dave
2026-03-14 13:28:33 +00:00
parent 5f7647cbda
commit 6a7baa4a15
3 changed files with 14 additions and 6 deletions

10
Cargo.lock generated
View File

@@ -4026,7 +4026,7 @@ dependencies = [
"tempfile", "tempfile",
"tokio", "tokio",
"tokio-tungstenite 0.28.0", "tokio-tungstenite 0.28.0",
"toml 1.0.3+spec-1.1.0", "toml 1.0.6+spec-1.1.0",
"uuid", "uuid",
"walkdir", "walkdir",
] ]
@@ -4371,9 +4371,9 @@ dependencies = [
[[package]] [[package]]
name = "toml" name = "toml"
version = "1.0.3+spec-1.1.0" version = "1.0.6+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7614eaf19ad818347db24addfa201729cf2a9b6fdfd9eb0ab870fcacc606c0c" checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc"
dependencies = [ dependencies = [
"indexmap", "indexmap",
"serde_core", "serde_core",
@@ -4704,9 +4704,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.21.0" version = "1.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
dependencies = [ dependencies = [
"getrandom 0.4.1", "getrandom 0.4.1",
"js-sys", "js-sys",

8
server/.mcp.json Normal file
View File

@@ -0,0 +1,8 @@
{
"mcpServers": {
"story-kit": {
"type": "http",
"url": "http://localhost:3001/mcp"
}
}
}

View File

@@ -32,7 +32,7 @@ matrix-sdk = { workspace = true }
pulldown-cmark = { workspace = true } pulldown-cmark = { workspace = true }
# Force bundled SQLite so static musl builds don't need a system libsqlite3 # Force bundled SQLite so static musl builds don't need a system libsqlite3
libsqlite3-sys = { version = "0.36.0", features = ["bundled"] } libsqlite3-sys = { version = "0.35.0", features = ["bundled"] }
[dev-dependencies] [dev-dependencies]
tempfile = { workspace = true } tempfile = { workspace = true }