rename router to actix-router

This commit is contained in:
yjhmelody 2019-12-18 16:40:42 +08:00
parent cab73791ed
commit ca7cd737e7
11 changed files with 2 additions and 7 deletions

View File

@ -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" }

View File

@ -490,11 +490,6 @@ mod tests {
value: String,
}
#[derive(Deserialize)]
struct Id {
id: String,
}
#[derive(Debug, Deserialize)]
struct Test1(String, u32);