Files
libchat/core/conversations/Cargo.toml
T

42 lines
1.2 KiB
TOML
Raw 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"]
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 }
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"
base64 = "0.22"
chat-proto = { git = "https://github.com/logos-messaging/chat_proto", rev = "37ec98a151f6d50aab2905802ac0a896477e62ea" }
2026-07-10 23:26:05 -07:00
de-mls = { git = "https://github.com/vacp2p/de-mls", rev = "2c7a8669c1492c749c02efd2c5ac45e93e4926a3"} # Expose Mls Extensions (#131)
2026-02-04 06:17:45 +07:00
double-ratchets = { path = "../double-ratchets" }
hashgraph-like-consensus = "0.6.0"
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"
prost = "0.14.1"
2026-06-15 13:15:18 -07:00
rand = "0.9"
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"
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"