ntex/Cargo.toml
Nikolay Kim 847f2738dd
Refactor async runtimes support (#88)
* refactor async runtimes support
2022-01-03 21:24:49 +06:00

30 lines
661 B
TOML

[workspace]
members = [
"ntex",
"ntex-bytes",
"ntex-codec",
"ntex-io",
"ntex-router",
"ntex-rt",
"ntex-service",
"ntex-tls",
"ntex-macros",
"ntex-util",
"ntex-tokio",
"ntex-async-std",
]
[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-tls = { path = "ntex-tls" }
ntex-macros = { path = "ntex-macros" }
ntex-util = { path = "ntex-util" }
ntex-tokio = { path = "ntex-tokio" }
ntex-async-std = { path = "ntex-async-std" }