diff --git a/Cargo.toml b/Cargo.toml index 13fc843e..be5bf339 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,27 +1,27 @@ [workspace] members = [ "actix-codec", - "actix-rt", "actix-macros", - "actix-service", + "actix-router", + "actix-rt", "actix-server", + "actix-service", "actix-threadpool", "actix-tls", "actix-tracing", "actix-utils", - "router", - "string", + "bytestring", ] [patch.crates-io] actix-codec = { path = "actix-codec" } -actix-rt = { path = "actix-rt" } actix-macros = { path = "actix-macros" } +actix-router = { path = "actix-router" } +actix-rt = { path = "actix-rt" } actix-server = { path = "actix-server" } actix-service = { path = "actix-service" } actix-threadpool = { path = "actix-threadpool" } actix-tls = { path = "actix-tls" } actix-tracing = { path = "actix-tracing" } actix-utils = { path = "actix-utils" } -actix-router = { path = "router" } -bytestring = { path = "string" } +bytestring = { path = "bytestring" } diff --git a/router/CHANGES.md b/actix-router/CHANGES.md similarity index 100% rename from router/CHANGES.md rename to actix-router/CHANGES.md diff --git a/router/Cargo.toml b/actix-router/Cargo.toml similarity index 100% rename from router/Cargo.toml rename to actix-router/Cargo.toml diff --git a/router/LICENSE-APACHE b/actix-router/LICENSE-APACHE similarity index 100% rename from router/LICENSE-APACHE rename to actix-router/LICENSE-APACHE diff --git a/router/LICENSE-MIT b/actix-router/LICENSE-MIT similarity index 100% rename from router/LICENSE-MIT rename to actix-router/LICENSE-MIT diff --git a/router/src/de.rs b/actix-router/src/de.rs similarity index 100% rename from router/src/de.rs rename to actix-router/src/de.rs diff --git a/router/src/lib.rs b/actix-router/src/lib.rs similarity index 100% rename from router/src/lib.rs rename to actix-router/src/lib.rs diff --git a/router/src/path.rs b/actix-router/src/path.rs similarity index 100% rename from router/src/path.rs rename to actix-router/src/path.rs diff --git a/router/src/resource.rs b/actix-router/src/resource.rs similarity index 100% rename from router/src/resource.rs rename to actix-router/src/resource.rs diff --git a/router/src/router.rs b/actix-router/src/router.rs similarity index 100% rename from router/src/router.rs rename to actix-router/src/router.rs diff --git a/router/src/url.rs b/actix-router/src/url.rs similarity index 100% rename from router/src/url.rs rename to actix-router/src/url.rs