mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-03 00: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"
|
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
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"]
|
crate-type = ["rlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libchat = { path = "../../core_crates/conversations" }
|
libchat = { path = "../../core/conversations" }
|
||||||
Loading…
x
Reference in New Issue
Block a user