libchat/Cargo.toml

28 lines
568 B
TOML
Raw Normal View History

2025-12-22 09:40:46 -08:00
[workspace]
resolver = "3"
2026-01-15 08:47:02 +08:00
2025-12-22 09:40:46 -08:00
members = [
"core/sqlite",
"core/conversations",
"core/crypto",
"core/double-ratchets",
"core/storage",
"crates/client",
"crates/client-ffi",
2026-04-23 18:04:45 -07:00
"bin/chat-cli", "extensions/delivery",
2025-12-22 09:40:46 -08:00
]
2026-04-23 18:04:45 -07:00
# 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"