2025-12-22 09:40:46 -08:00
|
|
|
[package]
|
|
|
|
|
name = "logos-chat"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[lib]
|
2026-01-29 01:38:08 +07:00
|
|
|
crate-type = ["staticlib","dylib"]
|
2025-12-22 09:40:46 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-01-22 06:39:09 +07:00
|
|
|
blake2.workspace = true
|
|
|
|
|
chat-proto = { git = "https://github.com/logos-messaging/chat_proto" }
|
|
|
|
|
crypto = { path = "../crypto" }
|
|
|
|
|
hex = "0.4.3"
|
|
|
|
|
prost = "0.14.1"
|
|
|
|
|
rand_core = { version = "0.6" }
|
2026-01-29 00:59:07 +07:00
|
|
|
safer-ffi = "0.1.13"
|
2025-12-22 09:40:46 -08:00
|
|
|
thiserror = "2.0.17"
|
2026-01-22 06:39:09 +07:00
|
|
|
x25519-dalek = { version = "2.0.1", features = ["static_secrets", "reusable_secrets", "getrandom"] }
|