mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-24 10:59:27 +00:00
* Add GroupV1 * Clean warnings * Remove dead test * Re-use components in integration tests * Remove deadcode * undo import fixes * tidy * Update Accounts + service_traits * Remove ClientCtx * Remove duplicate test_utils * Wrap constructor in result * Warning fixups * Appease clippy * Update comments * Update todo * Clean up warnings * Avoid panic * Fix libchat import in chat-cli * Add InboxV2 comment * Add comments to GroupV1Convo * Update doc comments * reduce visibility * Doc Integration tests * Hashlen update * remove type alias for ProtocolParams * Remove stray printlines * Review fixes * PR review changes * Add trait comments * chat_proto import paths * PR Feedback fixes * Update CliClient * Update CLI DeliveryService impls
30 lines
845 B
TOML
30 lines
845 B
TOML
[package]
|
|
name = "libchat"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["rlib","staticlib"]
|
|
|
|
[dependencies]
|
|
base64 = "0.22"
|
|
sqlite = { package = "chat-sqlite", path = "../sqlite" }
|
|
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" }
|
|
openmls = { version = "0.8.1", features = ["libcrux-provider"] }
|
|
openmls_libcrux_crypto = "0.3.1"
|
|
openmls_traits = "0.5.0"
|
|
|
|
[dev-dependencies]
|
|
components = { package = "components", path = "../../extensions/components" }
|
|
tempfile = "3"
|