Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 31 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/aingle_graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ chrono = { version = "0.4", features = ["serde"] }
# Storage backends (optional)
sled = { version = "0.34", optional = true }
rocksdb = { version = "0.24", optional = true }
rusqlite = { version = "0.32", features = ["bundled"], optional = true }
rusqlite = { version = "0.39", features = ["bundled"], optional = true }

# RDF parsing (optional)
rio_turtle = { version = "0.8", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/aingle_minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async-io = "2.3"

# Database backends (choose via features)
# SQLite - lightweight, good for IoT edge devices
rusqlite = { version = "0.32", default-features = false, features = ["bundled"], optional = true }
rusqlite = { version = "0.39", default-features = false, features = ["bundled"], optional = true }
# RocksDB - high-performance LSM tree, production-ready
rocksdb = { version = "0.24", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/ineru/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock", "std"
log = "0.4"

# Optional: SQLite for persistent LTM (matching workspace version)
rusqlite = { version = "0.32", default-features = false, features = ["bundled"], optional = true }
rusqlite = { version = "0.39", default-features = false, features = ["bundled"], optional = true }

[dev-dependencies]
criterion = "0.5"
Expand Down
Loading