libchat/Cargo.toml

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