mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-12 04:59:27 +00:00
47 lines
1.0 KiB
TOML
47 lines
1.0 KiB
TOML
|
|
[workspace]
|
|
resolver = "3"
|
|
|
|
members = [
|
|
"bin/chat-cli",
|
|
"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/sqlite",
|
|
"core/conversations",
|
|
"core/crypto",
|
|
"core/double-ratchets",
|
|
"core/storage",
|
|
"core/integration_tests_core",
|
|
"crates/client",
|
|
"crates/client-ffi",
|
|
]
|
|
|
|
[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-account = { path = "core/account" }
|
|
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"
|