diff --git a/Cargo.toml b/Cargo.toml index 1557e0f2..bcb6ea06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ "actix-threadpool", "actix-tls", "actix-utils", - "router", + "actix-router", "string", ] @@ -27,5 +27,5 @@ actix-testing = { path = "actix-testing" } actix-threadpool = { path = "actix-threadpool" } actix-tls = { path = "actix-tls" } actix-utils = { path = "actix-utils" } -actix-router = { path = "router" } +actix-router = { path = "actix-router" } bytestring = { path = "string" } diff --git a/router/CHANGES.txt b/actix-router/CHANGES.txt similarity index 100% rename from router/CHANGES.txt rename to actix-router/CHANGES.txt 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 99% rename from router/src/de.rs rename to actix-router/src/de.rs index 56dac4e7..1b6f5c4e 100644 --- a/router/src/de.rs +++ b/actix-router/src/de.rs @@ -490,11 +490,6 @@ mod tests { value: String, } - #[derive(Deserialize)] - struct Id { - id: String, - } - #[derive(Debug, Deserialize)] struct Test1(String, u32); 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