mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-26 22:23:14 +00:00
* feat: storage for conversations * fix: db types conversion * feat: run migrations from sql files * feat: persist identity * fix: revert double ratchet storage refactor * fix: clean * refactor: use result wrapper for ffi * refactor: uniform storage error into chat error * fix: zeroize identity record * fix: zeroize for secret keys in db operations * fix: transactional sql migration * fix: remove destroy_string * refactor: inline identity record name clone
26 lines
650 B
TOML
26 lines
650 B
TOML
[package]
|
|
name = "libchat"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["rlib","staticlib","dylib"]
|
|
|
|
[dependencies]
|
|
base64 = "0.22"
|
|
blake2.workspace = true
|
|
chat-proto = { git = "https://github.com/logos-messaging/chat_proto" }
|
|
crypto = { path = "../crypto" }
|
|
double-ratchets = { path = "../double-ratchets" }
|
|
hex = "0.4.3"
|
|
prost = "0.14.1"
|
|
rand_core = { version = "0.6" }
|
|
safer-ffi = "0.1.13"
|
|
thiserror = "2.0.17"
|
|
x25519-dalek = { version = "2.0.1", features = ["static_secrets", "reusable_secrets", "getrandom"] }
|
|
storage = { path = "../storage" }
|
|
zeroize = { version = "1.8.2", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|