mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-27 19:49:31 +00:00
* feat: http server based key package registry * chore: instructions on running the registration service * chore: remove duplicate post param * chore: revert out sourced account id for multi devices support * feat: signature on account id and key packages * chore: include http registry in contact registry module * refactor: use device id for retrieve key package * chore: use string for device id * feat: server verification on the register * chore: doc the smoke test * chore: fix data folder non exist * chore: use payload for register and retrieve * chore: fix clippy
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
|
|
[workspace]
|
|
resolver = "3"
|
|
|
|
members = [
|
|
"bin/chat-cli",
|
|
"bin/keypackage-registry",
|
|
"core/account",
|
|
"core/conversations",
|
|
"core/crypto",
|
|
"core/double-ratchets",
|
|
"core/integration_tests_core",
|
|
"core/sqlite",
|
|
"core/storage",
|
|
"crates/client-ffi",
|
|
"crates/client",
|
|
"extensions/components",
|
|
]
|
|
|
|
default-members = [
|
|
"core/account",
|
|
"core/conversations",
|
|
"core/crypto",
|
|
"core/double-ratchets",
|
|
"core/integration_tests_core",
|
|
"core/sqlite",
|
|
"core/storage",
|
|
"crates/client-ffi",
|
|
"crates/client",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
# Internal Workspace dependency declarations (sorted)
|
|
chat-sqlite = { path = "core/sqlite" }
|
|
components = { path = "extensions/components" }
|
|
crypto = { path = "core/crypto" }
|
|
libchat = { path = "core/conversations" }
|
|
logos-chat = { path = "crates/client" }
|
|
storage = { path = "core/storage" }
|
|
|
|
# External Workspace dependency declarations (sorted)
|
|
blake2 = "0.10"
|
|
|
|
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
|
|
# C FFI library.
|
|
[profile.release]
|
|
panic = "abort"
|