libchat/Cargo.toml
Jazz Turner-Baggs af3ff3c6a2
Add GroupV1
2026-04-28 08:13:12 -07:00

28 lines
568 B
TOML

[workspace]
resolver = "3"
members = [
"core/sqlite",
"core/conversations",
"core/crypto",
"core/double-ratchets",
"core/storage",
"crates/client",
"crates/client-ffi",
"bin/chat-cli", "extensions/delivery",
]
# default-members = [ "core/*", "crates/*"]
default-members = [ "core/*"]
[workspace.dependencies]
blake2 = "0.10"
libchat = { path = "core/conversations" }
storage = { path = "core/storage" }
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
# C FFI library.
[profile.release]
panic = "abort"