libchat/Cargo.toml

44 lines
1007 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 = [
"bin/chat-cli",
"core/conversations",
"core/crypto",
"core/double-ratchets",
2026-04-23 22:12:20 -07:00
"core/integration_tests_core",
"core/sqlite",
"core/storage",
"crates/client-ffi",
"crates/client",
2026-04-23 22:12:20 -07:00
"extensions/components",
2025-12-22 09:40:46 -08:00
]
2026-04-23 22:12:20 -07:00
default-members = [
"core/sqlite",
"core/conversations",
"core/crypto",
"core/double-ratchets",
"core/storage",
"core/integration_tests_core",
2026-04-28 08:06:19 -07:00
"crates/client",
"crates/client-ffi",
2026-04-23 22:12:20 -07:00
]
2026-04-23 18:04:45 -07:00
[workspace.dependencies]
# Internal Workspace dependency declarations (sorted)
crypto = { path = "core/crypto" }
libchat = { path = "core/conversations" }
logoschat_components = {package = "components", path = "extensions/components"}
sqlite = { path = "core/sqlite" }
storage = { path = "core/storage" }
# External Workspace dependency declarations (sorted)
blake2 = "0.10"
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
# C FFI library.
[profile.release]
panic = "abort"