libchat/Cargo.toml

18 lines
237 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 = [
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" }
2026-02-12 16:02:49 -08:00
# Internal crates
crypto = { path = "crypto" }