diff --git a/Cargo.toml b/Cargo.toml index cc2828ad..14b8a9ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,10 +28,7 @@ default = [] dev_live_assets = [] [workspace] -members = [ - "rojo-insta-ext", - "memofs", -] +members = ["crates/*"] [lib] name = "librojo" @@ -42,7 +39,7 @@ name = "build" harness = false [dependencies] -memofs = { version = "0.2.0", path = "memofs" } +memofs = { version = "0.2.0", path = "crates/memofs" } # These dependencies can be uncommented when working on rbx-dom simultaneously # rbx_binary = { path = "../rbx-dom/rbx_binary" } @@ -88,7 +85,7 @@ clap = { version = "3.1.18", features = ["derive"] } winreg = "0.10.1" [build-dependencies] -memofs = { version = "0.2.0", path = "memofs" } +memofs = { version = "0.2.0", path = "crates/memofs" } embed-resource = "1.6.4" anyhow = "1.0.44" @@ -97,7 +94,7 @@ fs-err = "2.6.0" maplit = "1.0.2" [dev-dependencies] -rojo-insta-ext = { path = "rojo-insta-ext" } +rojo-insta-ext = { path = "crates/rojo-insta-ext" } criterion = "0.3.5" insta = { version = "1.8.0", features = ["redactions"] } diff --git a/memofs/CHANGELOG.md b/crates/memofs/CHANGELOG.md similarity index 100% rename from memofs/CHANGELOG.md rename to crates/memofs/CHANGELOG.md diff --git a/memofs/Cargo.toml b/crates/memofs/Cargo.toml similarity index 100% rename from memofs/Cargo.toml rename to crates/memofs/Cargo.toml diff --git a/memofs/LICENSE.txt b/crates/memofs/LICENSE.txt similarity index 100% rename from memofs/LICENSE.txt rename to crates/memofs/LICENSE.txt diff --git a/memofs/README.md b/crates/memofs/README.md similarity index 100% rename from memofs/README.md rename to crates/memofs/README.md diff --git a/memofs/README.tpl b/crates/memofs/README.tpl similarity index 100% rename from memofs/README.tpl rename to crates/memofs/README.tpl diff --git a/memofs/src/in_memory_fs.rs b/crates/memofs/src/in_memory_fs.rs similarity index 100% rename from memofs/src/in_memory_fs.rs rename to crates/memofs/src/in_memory_fs.rs diff --git a/memofs/src/lib.rs b/crates/memofs/src/lib.rs similarity index 100% rename from memofs/src/lib.rs rename to crates/memofs/src/lib.rs diff --git a/memofs/src/noop_backend.rs b/crates/memofs/src/noop_backend.rs similarity index 100% rename from memofs/src/noop_backend.rs rename to crates/memofs/src/noop_backend.rs diff --git a/memofs/src/snapshot.rs b/crates/memofs/src/snapshot.rs similarity index 100% rename from memofs/src/snapshot.rs rename to crates/memofs/src/snapshot.rs diff --git a/memofs/src/std_backend.rs b/crates/memofs/src/std_backend.rs similarity index 100% rename from memofs/src/std_backend.rs rename to crates/memofs/src/std_backend.rs diff --git a/rojo-insta-ext/Cargo.toml b/crates/rojo-insta-ext/Cargo.toml similarity index 100% rename from rojo-insta-ext/Cargo.toml rename to crates/rojo-insta-ext/Cargo.toml diff --git a/rojo-insta-ext/README.md b/crates/rojo-insta-ext/README.md similarity index 100% rename from rojo-insta-ext/README.md rename to crates/rojo-insta-ext/README.md diff --git a/rojo-insta-ext/src/lib.rs b/crates/rojo-insta-ext/src/lib.rs similarity index 100% rename from rojo-insta-ext/src/lib.rs rename to crates/rojo-insta-ext/src/lib.rs diff --git a/rojo-insta-ext/src/redaction_map.rs b/crates/rojo-insta-ext/src/redaction_map.rs similarity index 100% rename from rojo-insta-ext/src/redaction_map.rs rename to crates/rojo-insta-ext/src/redaction_map.rs