mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-27 19:49:31 +00:00
* Move logos_delivery to components Rename components update deps WIP Remove requirement for build.rs in chat-cli fix imports update linux flake Linter fixes fix build in linux * Update docs * Blankspace fix
25 lines
581 B
TOML
25 lines
581 B
TOML
[package]
|
|
name = "components"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
links = "logosdelivery"
|
|
|
|
[features]
|
|
embedded_p2p_delivery = []
|
|
|
|
[dependencies]
|
|
# Workspace dependencies (sorted)
|
|
crypto = { workspace = true }
|
|
libchat = { 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"
|