mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-21 00:00:10 +02:00
A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `fs` implementation is now provided by the main `tokio` crate. The `fs` functionality may still be excluded from the build by skipping the `fs` feature flag.
16 lines
203 B
TOML
16 lines
203 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"tokio",
|
|
"tokio-codec",
|
|
"tokio-executor",
|
|
"tokio-io",
|
|
"tokio-macros",
|
|
"tokio-net",
|
|
"tokio-sync",
|
|
"tokio-test",
|
|
"tokio-timer",
|
|
"tokio-tls",
|
|
"build-tests",
|
|
]
|