Move basic http types to separeate crate

This commit is contained in:
Nikolay Kim 2022-06-13 22:04:16 +06:00
parent 49520c0c55
commit d7261e2dd7
16 changed files with 141 additions and 49 deletions

View file

@ -4,6 +4,7 @@ members = [
"ntex-bytes",
"ntex-codec",
"ntex-io",
"ntex-http",
"ntex-router",
"ntex-rt",
"ntex-service",
@ -20,6 +21,7 @@ ntex = { path = "ntex" }
ntex-bytes = { path = "ntex-bytes" }
ntex-codec = { path = "ntex-codec" }
ntex-io = { path = "ntex-io" }
ntex-http = { path = "ntex-http" }
ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" }
ntex-service = { path = "ntex-service" }