mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-10 17:03:12 +00:00
15 lines
333 B
TOML
15 lines
333 B
TOML
|
|
[package]
|
||
|
|
name = "storage"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2024"
|
||
|
|
description = "Shared storage layer for libchat"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
thiserror = "2"
|
||
|
|
rusqlite = { version = "0.35", optional = true, features = ["bundled"] }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = []
|
||
|
|
sqlite = ["rusqlite"]
|
||
|
|
sqlcipher = ["sqlite", "rusqlite/bundled-sqlcipher-vendored-openssl"]
|