ntex/Cargo.toml
Nikolay Kim 841ad736d4
Refactor framed io (#67)
* refactor framed io

* allow to add filters

* move io code to separate module

* add into_boxed()

* remove uneeded IO_STOP state

* simplify on_disconnect storage

* cleanup io state

* add io connector
2021-12-13 17:19:43 +06:00

23 lines
495 B
TOML

[workspace]
members = [
"ntex",
"ntex-bytes",
"ntex-codec",
"ntex-io",
"ntex-router",
"ntex-rt",
"ntex-service",
"ntex-macros",
"ntex-util",
]
[patch.crates-io]
ntex = { path = "ntex" }
ntex-bytes = { path = "ntex-bytes" }
ntex-codec = { path = "ntex-codec" }
ntex-io = { path = "ntex-io" }
ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" }
ntex-service = { path = "ntex-service" }
ntex-macros = { path = "ntex-macros" }
ntex-util = { path = "ntex-util" }