rename crates/ to engrams/, bindings/ to receptors/
- crates/ → engrams/ (Rust engrams live here) - bindings/ → receptors/ (cross-language access points into the graph) - Cargo.toml workspace paths updated
This commit is contained in:
+12
-12
@@ -1,17 +1,17 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"crates/engram-core",
|
||||
"crates/engram-ffi",
|
||||
"crates/engram-jni",
|
||||
"crates/engram-migrate",
|
||||
"crates/engram-sync",
|
||||
"crates/engram-server",
|
||||
"crates/engram-projection",
|
||||
"crates/engram-tx",
|
||||
"crates/engram-crypto",
|
||||
"crates/engram-reasoning",
|
||||
# engram-wasm is in bindings/ and compiled separately via wasm-pack
|
||||
"engrams/engram-core",
|
||||
"engrams/engram-ffi",
|
||||
"engrams/engram-jni",
|
||||
"engrams/engram-migrate",
|
||||
"engrams/engram-sync",
|
||||
"engrams/engram-server",
|
||||
"engrams/engram-projection",
|
||||
"engrams/engram-tx",
|
||||
"engrams/engram-crypto",
|
||||
"engrams/engram-reasoning",
|
||||
# engram-wasm is in receptors/ and compiled separately via wasm-pack
|
||||
# (wasm targets can't be in the same workspace build as native targets)
|
||||
]
|
||||
|
||||
@@ -34,4 +34,4 @@ edition = "2021"
|
||||
migration = ["engram-core/migration"]
|
||||
|
||||
[dependencies]
|
||||
engram-core = { path = "crates/engram-core" }
|
||||
engram-core = { path = "engrams/engram-core" }
|
||||
|
||||
Reference in New Issue
Block a user