diff --git a/Cargo.toml b/Cargo.toml index b01734ae7ae..4cc35cbe374 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -134,7 +134,6 @@ members = [ "pylib", "stdlib", "derive-impl", - "wtf8", "wasm/lib", "crates/*", ] @@ -160,7 +159,7 @@ rustpython-vm = { path = "vm", default-features = false, version = "0.4.0" } rustpython-pylib = { path = "pylib", version = "0.4.0" } rustpython-stdlib = { path = "stdlib", default-features = false, version = "0.4.0" } rustpython-sre_engine = { path = "vm/sre_engine", version = "0.4.0" } -rustpython-wtf8 = { path = "wtf8", version = "0.4.0" } +rustpython-wtf8 = { path = "crates/wtf8", version = "0.4.0" } rustpython-doc = { path = "crates/doc", version = "0.4.0" } ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" } diff --git a/wtf8/Cargo.toml b/crates/wtf8/Cargo.toml similarity index 100% rename from wtf8/Cargo.toml rename to crates/wtf8/Cargo.toml diff --git a/wtf8/src/core_char.rs b/crates/wtf8/src/core_char.rs similarity index 100% rename from wtf8/src/core_char.rs rename to crates/wtf8/src/core_char.rs diff --git a/wtf8/src/core_str.rs b/crates/wtf8/src/core_str.rs similarity index 100% rename from wtf8/src/core_str.rs rename to crates/wtf8/src/core_str.rs diff --git a/wtf8/src/core_str_count.rs b/crates/wtf8/src/core_str_count.rs similarity index 100% rename from wtf8/src/core_str_count.rs rename to crates/wtf8/src/core_str_count.rs diff --git a/wtf8/src/lib.rs b/crates/wtf8/src/lib.rs similarity index 100% rename from wtf8/src/lib.rs rename to crates/wtf8/src/lib.rs