mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-27 06:33:08 +00:00
Rename crate folders based on feedback
This commit is contained in:
parent
5a6142cad9
commit
547458ab0a
12
Cargo.toml
12
Cargo.toml
@ -3,16 +3,16 @@
|
||||
resolver = "3"
|
||||
|
||||
members = [
|
||||
"core_crates/conversations",
|
||||
"core_crates/crypto",
|
||||
"core_crates/double-ratchets",
|
||||
"core_crates/storage",
|
||||
"chat_crates/client",
|
||||
"core/conversations",
|
||||
"core/crypto",
|
||||
"core/double-ratchets",
|
||||
"core/storage",
|
||||
"crates/client",
|
||||
]
|
||||
|
||||
[workspace.dependencies]
|
||||
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
|
||||
# C FFI library.
|
||||
|
||||
7
core/README.md
Normal file
7
core/README.md
Normal 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.
|
||||
@ -7,4 +7,4 @@ edition = "2024"
|
||||
crate-type = ["rlib"]
|
||||
|
||||
[dependencies]
|
||||
libchat = { path = "../../core_crates/conversations" }
|
||||
libchat = { path = "../../core/conversations" }
|
||||
Loading…
x
Reference in New Issue
Block a user