ntex/Cargo.toml
Nikolay Kim dafd339817
Add openssl filter (#69)
* add ntex-openssl

* cleanup io api

* add filter shutdown
2021-12-14 22:38:47 +06:00

25 lines
554 B
TOML

[workspace]
members = [
"ntex",
"ntex-bytes",
"ntex-codec",
"ntex-io",
"ntex-openssl",
"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-openssl = { path = "ntex-openssl" }
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" }