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]
|
2026-06-15 17:55:58 +02:00
|
|
|
crate-type = ["rlib"]
|
2025-12-22 09:40:46 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-20 13:18:25 -07:00
|
|
|
# Workspace dependencies (sorted)
|
|
|
|
|
blake2 = { workspace = true }
|
|
|
|
|
chat-sqlite = { workspace = true }
|
|
|
|
|
crypto = { workspace = true }
|
2026-06-10 06:59:04 -07:00
|
|
|
shared-traits = { workspace = true }
|
2026-05-20 13:18:25 -07:00
|
|
|
storage = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# External dependencies (sorted)
|
2026-06-15 13:15:18 -07:00
|
|
|
alloy = "2.0"
|
2026-02-11 19:51:22 +01:00
|
|
|
base64 = "0.22"
|
2026-06-02 21:55:19 +08:00
|
|
|
chat-proto = { git = "https://github.com/logos-messaging/chat_proto", rev = "37ec98a151f6d50aab2905802ac0a896477e62ea" }
|
2026-06-23 18:08:25 +03:00
|
|
|
de-mls = { git = "https://github.com/vacp2p/de-mls", tag = "v4.0.0" }
|
2026-02-04 06:17:45 +07:00
|
|
|
double-ratchets = { path = "../double-ratchets" }
|
2026-06-15 13:15:18 -07:00
|
|
|
hashgraph-like-consensus = "0.5.1"
|
2026-01-22 06:39:09 +07:00
|
|
|
hex = "0.4.3"
|
2026-05-20 13:18:25 -07:00
|
|
|
openmls = { version = "0.8.1", features = ["libcrux-provider"] }
|
|
|
|
|
openmls_libcrux_crypto = "0.3.1"
|
2026-06-02 15:21:21 -07:00
|
|
|
openmls_memory_storage = "0.5.0"
|
2026-05-20 13:18:25 -07:00
|
|
|
openmls_traits = "0.5.0"
|
2026-01-22 06:39:09 +07:00
|
|
|
prost = "0.14.1"
|
2026-06-15 13:15:18 -07:00
|
|
|
rand = "0.9"
|
2026-01-22 06:39:09 +07:00
|
|
|
rand_core = { version = "0.6" }
|
2025-12-22 09:40:46 -08:00
|
|
|
thiserror = "2.0.17"
|
2026-06-15 13:15:18 -07:00
|
|
|
tracing = "0.1.44"
|
2026-01-22 06:39:09 +07:00
|
|
|
x25519-dalek = { version = "2.0.1", features = ["static_secrets", "reusable_secrets", "getrandom"] }
|
2026-03-25 08:45:22 +08:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2026-05-20 13:18:25 -07:00
|
|
|
# Workspace dependencies (sorted)
|
|
|
|
|
components = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# External dependencies (sorted)
|
2026-03-25 08:45:22 +08:00
|
|
|
tempfile = "3"
|