libchat/Cargo.toml

20 lines
318 B
TOML
Raw Permalink 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-01-15 08:47:02 +08:00
"conversations",
"crypto",
2026-01-15 08:47:02 +08:00
"double-ratchets",
"storage",
2025-12-22 09:40:46 -08:00
]
[workspace.dependencies]
blake2 = "0.10"
storage = { path = "storage" }
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
# C FFI library.
[profile.release]
panic = "abort"