mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-08-04 06:03:12 +00:00
* feat: separate embedded p2p delievery to its own crate * feat: separate p2p config in its own crate * chore: split embed module * chore: refactor registry config * feat: split logos chat crate * chore: refactor
22 lines
555 B
TOML
22 lines
555 B
TOML
[package]
|
|
name = "components"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies (sorted)
|
|
crypto = { workspace = true }
|
|
libchat = { workspace = true }
|
|
logos-account = { workspace = true }
|
|
storage = { workspace = true }
|
|
|
|
# External dependencies (sorted)
|
|
base64 = "0.22"
|
|
crossbeam-channel = { workspace = true }
|
|
hex = "0.4.3"
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|