1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00

move router to actix-router

This commit is contained in:
Rob Ede 2020-12-31 02:29:27 +00:00
parent 6bcf6d8160
commit 93865de848
No known key found for this signature in database
GPG Key ID: C2A3B36E841A91E6
11 changed files with 7 additions and 7 deletions

View File

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