ntex/Cargo.toml
2024-03-24 16:15:42 +01:00

39 lines
888 B
TOML

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