libchat/Cargo.toml

22 lines
406 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 = [
2026-03-24 15:20:47 -07:00
"core/conversations",
"core/crypto",
"core/double-ratchets",
"core/storage",
"crates/client",
2025-12-22 09:40:46 -08:00
]
[workspace.dependencies]
blake2 = "0.10"
libchat = { path = "core/conversations" }
2026-03-24 15:20:47 -07:00
storage = { path = "core/storage" }
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
# C FFI library.
[profile.release]
panic = "abort"