From 94c90849e0318c247e1d441b1a11881d102f5e4d Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Fri, 14 Nov 2025 19:06:09 +0200 Subject: [PATCH] Move `wtf8` -> `crates/wtf8` --- Cargo.toml | 3 +-- {wtf8 => crates/wtf8}/Cargo.toml | 0 {wtf8 => crates/wtf8}/src/core_char.rs | 0 {wtf8 => crates/wtf8}/src/core_str.rs | 0 {wtf8 => crates/wtf8}/src/core_str_count.rs | 0 {wtf8 => crates/wtf8}/src/lib.rs | 0 6 files changed, 1 insertion(+), 2 deletions(-) rename {wtf8 => crates/wtf8}/Cargo.toml (100%) rename {wtf8 => crates/wtf8}/src/core_char.rs (100%) rename {wtf8 => crates/wtf8}/src/core_str.rs (100%) rename {wtf8 => crates/wtf8}/src/core_str_count.rs (100%) rename {wtf8 => crates/wtf8}/src/lib.rs (100%) 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