move low level utils to separate crate

This commit is contained in:
Nikolay Kim 2021-04-04 01:20:18 +06:00
parent 8b3655457b
commit 91ee6762e7
39 changed files with 466 additions and 230 deletions

View file

@ -6,6 +6,7 @@ members = [
"ntex-rt",
"ntex-service",
"ntex-macros",
"ntex-util",
]
[patch.crates-io]
@ -14,4 +15,5 @@ ntex-codec = { path = "ntex-codec" }
ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" }
ntex-service = { path = "ntex-service" }
ntex-macros = { path = "ntex-macros" }
ntex-macros = { path = "ntex-macros" }
ntex-util = { path = "ntex-util" }