mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-27 06:33:08 +00:00
* move to “crates” style folder * Update workspace * clear crate names * Rename crate folders based on feedback * Use workspace dependencies instead of paths * Move updated files from core
22 lines
406 B
TOML
22 lines
406 B
TOML
|
|
[workspace]
|
|
resolver = "3"
|
|
|
|
members = [
|
|
"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"
|