libchat/Cargo.toml

49 lines
1.1 KiB
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 = [
"bin/chat-cli",
"core/account",
"core/conversations",
2026-05-10 23:08:18 -07:00
"core/core_client",
"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-05-10 23:08:18 -07:00
"extensions/components",
2025-12-22 09:40:46 -08:00
]
2026-04-23 22:12:20 -07:00
default-members = [
"core/account",
2026-04-23 22:12:20 -07:00
"core/conversations",
2026-05-10 23:08:18 -07:00
"core/core_client",
2026-04-23 22:12:20 -07:00
"core/crypto",
"core/double-ratchets",
"core/integration_tests_core",
2026-05-10 23:08:18 -07:00
"core/sqlite",
"core/storage",
2026-04-28 08:06:19 -07:00
"crates/client-ffi",
2026-05-10 23:08:18 -07:00
"crates/client",
2026-04-23 22:12:20 -07:00
]
2026-04-23 18:04:45 -07:00
[workspace.dependencies]
# Internal Workspace dependency declarations (sorted)
2026-05-01 13:25:35 -07:00
chat-sqlite = { path = "core/sqlite" }
components = { path = "extensions/components" }
crypto = { path = "core/crypto" }
libchat = { path = "core/conversations" }
logos-account = { path = "core/account" }
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"