libchat/core/sqlite/Cargo.toml

15 lines
305 B
TOML
Raw Normal View History

2026-03-28 07:13:03 +08:00
[package]
2026-03-30 12:44:26 +08:00
name = "sqlite"
2026-03-28 07:13:03 +08:00
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"] }
[dev-dependencies]
tempfile = "3"