libchat/core/sqlite/Cargo.toml
2026-05-01 12:24:47 -07:00

18 lines
459 B
TOML

[package]
name = "chat-sqlite"
version = "0.1.0"
edition = "2024"
description = "SQLite storage implementation for libchat"
[dependencies]
# External dependencies (sorted)
crypto = { path = "../crypto" }
hex = "0.4.3"
rusqlite = { version = "0.35", features = ["bundled-sqlcipher-vendored-openssl"] }
storage = { path = "../storage" }
zeroize = { version = "1.8.2", features = ["derive"] }
[dev-dependencies]
# External dependencies (sorted)
tempfile = "3"