From 93865de848d2da56e5a13c300dac73049cc985fb Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Thu, 31 Dec 2020 02:29:27 +0000 Subject: [PATCH] move router to actix-router --- Cargo.toml | 14 +++++++------- {router => actix-router}/CHANGES.md | 0 {router => actix-router}/Cargo.toml | 0 {router => actix-router}/LICENSE-APACHE | 0 {router => actix-router}/LICENSE-MIT | 0 {router => actix-router}/src/de.rs | 0 {router => actix-router}/src/lib.rs | 0 {router => actix-router}/src/path.rs | 0 {router => actix-router}/src/resource.rs | 0 {router => actix-router}/src/router.rs | 0 {router => actix-router}/src/url.rs | 0 11 files changed, 7 insertions(+), 7 deletions(-) rename {router => actix-router}/CHANGES.md (100%) rename {router => actix-router}/Cargo.toml (100%) rename {router => actix-router}/LICENSE-APACHE (100%) rename {router => actix-router}/LICENSE-MIT (100%) rename {router => actix-router}/src/de.rs (100%) rename {router => actix-router}/src/lib.rs (100%) rename {router => actix-router}/src/path.rs (100%) rename {router => actix-router}/src/resource.rs (100%) rename {router => actix-router}/src/router.rs (100%) rename {router => actix-router}/src/url.rs (100%) 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