libchat/Cargo.toml
2026-03-28 07:13:03 +08:00

23 lines
430 B
TOML

[workspace]
resolver = "3"
members = [
"core/chat-sqlite",
"core/conversations",
"core/crypto",
"core/double-ratchets",
"core/storage",
"crates/client",
]
[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"