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-05-01 12:24:47 -07:00
|
|
|
"bin/chat-cli",
|
2026-05-02 09:39:48 -07:00
|
|
|
"core/account",
|
2026-03-24 18:21:00 -07:00
|
|
|
"core/conversations",
|
2026-05-10 23:08:18 -07:00
|
|
|
"core/core_client",
|
2026-03-24 18:21:00 -07:00
|
|
|
"core/crypto",
|
|
|
|
|
"core/double-ratchets",
|
2026-04-23 22:12:20 -07:00
|
|
|
"core/integration_tests_core",
|
2026-05-01 12:24:47 -07:00
|
|
|
"core/sqlite",
|
|
|
|
|
"core/storage",
|
2026-04-08 23:15:48 +02:00
|
|
|
"crates/client-ffi",
|
2026-05-01 12:24:47 -07:00
|
|
|
"crates/client",
|
2026-05-10 23:08:18 -07:00
|
|
|
"extensions/components",
|
2025-12-22 09:40:46 -08:00
|
|
|
]
|
2026-01-22 06:39:09 +07:00
|
|
|
|
2026-04-23 22:12:20 -07:00
|
|
|
default-members = [
|
2026-05-02 09:39:48 -07:00
|
|
|
"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
|
|
|
|
2026-01-22 06:39:09 +07:00
|
|
|
[workspace.dependencies]
|
2026-05-01 12:24:47 -07:00
|
|
|
# Internal Workspace dependency declarations (sorted)
|
2026-05-01 13:25:35 -07:00
|
|
|
chat-sqlite = { path = "core/sqlite" }
|
|
|
|
|
components = { path = "extensions/components" }
|
2026-05-01 12:24:47 -07:00
|
|
|
crypto = { path = "core/crypto" }
|
|
|
|
|
libchat = { path = "core/conversations" }
|
2026-05-02 09:39:48 -07:00
|
|
|
logos-account = { path = "core/account" }
|
2026-05-01 12:24:47 -07:00
|
|
|
storage = { path = "core/storage" }
|
|
|
|
|
|
|
|
|
|
# External Workspace dependency declarations (sorted)
|
|
|
|
|
blake2 = "0.10"
|
2026-02-28 21:03:55 +01:00
|
|
|
|
|
|
|
|
# Panicking across FFI boundaries is UB; abort is the correct strategy for a
|
|
|
|
|
# C FFI library.
|
|
|
|
|
[profile.release]
|
|
|
|
|
panic = "abort"
|