Rename crate folders based on feedback

This commit is contained in:
Jazz Turner-Baggs 2026-03-24 15:20:47 -07:00
parent 5a6142cad9
commit 547458ab0a
No known key found for this signature in database
57 changed files with 14 additions and 7 deletions

View File

@ -3,16 +3,16 @@
resolver = "3" resolver = "3"
members = [ members = [
"core_crates/conversations", "core/conversations",
"core_crates/crypto", "core/crypto",
"core_crates/double-ratchets", "core/double-ratchets",
"core_crates/storage", "core/storage",
"chat_crates/client", "crates/client",
] ]
[workspace.dependencies] [workspace.dependencies]
blake2 = "0.10" blake2 = "0.10"
storage = { path = "core_crates/storage" } storage = { path = "core/storage" }
# Panicking across FFI boundaries is UB; abort is the correct strategy for a # Panicking across FFI boundaries is UB; abort is the correct strategy for a
# C FFI library. # C FFI library.

7
core/README.md Normal file
View File

@ -0,0 +1,7 @@
# Core
Crates in this directory will one day be separated into a separate shared repository.
They could be moved now, but it's desirable to have a monorepo setup at this time.
These crates MUST not depend on any code outside of this folder.

View File

@ -7,4 +7,4 @@ edition = "2024"
crate-type = ["rlib"] crate-type = ["rlib"]
[dependencies] [dependencies]
libchat = { path = "../../core_crates/conversations" } libchat = { path = "../../core/conversations" }