move ntex::connect to separate crate

This commit is contained in:
Nikolay Kim 2022-06-20 21:54:13 +06:00
parent 36926de5be
commit 5a317554f9
17 changed files with 288 additions and 60 deletions

View file

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