mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-04-01 17:13:13 +00:00
17 lines
409 B
TOML
17 lines
409 B
TOML
[package]
|
|
name = "chat-sqlite"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "SQLite storage implementation for libchat"
|
|
|
|
[dependencies]
|
|
crypto = { path = "../crypto" }
|
|
hex = "0.4.3"
|
|
storage = { path = "../storage" }
|
|
zeroize = { version = "1.8.2", features = ["derive"] }
|
|
rusqlite = { version = "0.35", features = ["bundled-sqlcipher-vendored-openssl"] }
|
|
thiserror = "2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|