mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-28 03:59:27 +00:00
* Add encoded_credential to CovnoOutcome * Add DelegateSigner * Add test for DirectV1 * Add support for undecodable credentials * Add docs * Clean + fixes * clippy fixes * Add unit tests * Update trait bounds
28 lines
578 B
TOML
28 lines
578 B
TOML
[package]
|
|
name = "logos-chat"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
# Workspace dependencies (sorted)
|
|
chat-sqlite = { workspace = true }
|
|
components = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
crypto = { workspace = true }
|
|
libchat = { workspace = true }
|
|
logos-account = { workspace = true, features = ["dev"]}
|
|
shared-traits = { workspace = true }
|
|
|
|
# External dependencies (sorted)
|
|
hex = "0.4.3"
|
|
parking_lot = "0.12"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
# External dependencies (sorted)
|
|
tempfile = "3"
|