37 lines
949 B
TOML
Raw Permalink Normal View History

2025-12-22 09:40:46 -08:00
[package]
2026-02-21 22:24:10 -08:00
name = "libchat"
2025-12-22 09:40:46 -08:00
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["rlib","staticlib"]
2025-12-22 09:40:46 -08:00
[dependencies]
# Workspace dependencies (sorted)
blake2 = { workspace = true }
2026-05-02 09:49:16 -07:00
chat-sqlite = { workspace = true }
2026-05-01 13:25:35 -07:00
crypto = { workspace = true }
storage = { workspace = true }
# External dependencies (sorted)
base64 = "0.22"
chat-proto = { git = "https://github.com/logos-messaging/chat_proto" }
double-ratchets = { path = "../double-ratchets" }
hex = "0.4.3"
openmls = { version = "0.8.1", features = ["libcrux-provider"] }
openmls_libcrux_crypto = "0.3.1"
openmls_memory_storage = "0.5.0"
openmls_traits = "0.5.0"
prost = "0.14.1"
rand_core = { version = "0.6" }
safer-ffi = "0.1.13"
2025-12-22 09:40:46 -08:00
thiserror = "2.0.17"
x25519-dalek = { version = "2.0.1", features = ["static_secrets", "reusable_secrets", "getrandom"] }
[dev-dependencies]
2026-05-01 13:25:35 -07:00
# Workspace dependencies (sorted)
components = { workspace = true }
# External dependencies (sorted)
tempfile = "3"