summaryrefslogtreecommitdiffstats
path: root/tokio/tests/fs_file.rs
AgeCommit message (Collapse)Author
2020-03-26fs: add coop test (#2344)Carl Lerche
2019-12-03Add unit tests for tokio::File::AsRaw{Fd,Handle} for Unix and Windows. (#1890)Xinkai Chen
Supersedes #1640.
2019-11-22default all feature flags to off (#1811)Carl Lerche
Changes the set of `default` feature flags to `[]`. By default, only core traits are included without specifying feature flags. This makes it easier for users to pick the components they need. For convenience, a `full` feature flag is included that includes all components. Tests are configured to require the `full` feature. Testing individual feature flags will need to be moved to a separate crate. Closes #1791
2019-10-21fs: move into `tokio` (#1672)Carl Lerche
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.