mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-12 04:59:27 +00:00
41 lines
919 B
TOML
41 lines
919 B
TOML
|
|
[workspace]
|
|
resolver = "3"
|
|
|
|
members = [
|
|
"core/sqlite",
|
|
"core/conversations",
|
|
"core/crypto",
|
|
"core/double-ratchets",
|
|
"core/storage",
|
|
"core/integration_tests_core",
|
|
"crates/client",
|
|
"crates/client-ffi",
|
|
"bin/chat-cli",
|
|
"extensions/components",
|
|
]
|
|
|
|
default-members = [
|
|
"core/sqlite",
|
|
"core/conversations",
|
|
"core/crypto",
|
|
"core/double-ratchets",
|
|
"core/storage",
|
|
"core/integration_tests_core",
|
|
"crates/client",
|
|
"crates/client-ffi",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
blake2 = "0.10"
|
|
crypto = { path = "core/crypto" }
|
|
libchat = { path = "core/conversations" }
|
|
logoschat_components = {package="components", path ="extensions/components"}
|
|
sqlite = { path = "core/sqlite"}
|
|
storage = { path = "core/storage" }
|
|
|
|
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
|
|
# C FFI library.
|
|
[profile.release]
|
|
panic = "abort"
|