summaryrefslogtreecommitdiffstats
path: root/tokio/README.md
AgeCommit message (Collapse)Author
2020-11-03chore: update CI badge (#3091)Carl Lerche
2020-10-26readme: update the MSRV to 1.45 (#3048)nickelc
2020-07-24doc: feature flags in README (#2682)Blas Rodriguez Irizar
2020-07-22doc: fix links to new website (#2674)Alice Ryhl
2020-07-21doc: update links in README.md and CONTRIBUTING.md (#2609)Alice Ryhl
2020-06-11docs: fix the link of contributing guide (#2577)johnnydai0
2020-01-07doc: fix old notes regarding examples and async/await (#2071)Alice Ryhl
2019-12-11chore: fix the outdated example in README (#1930)nickelc
2019-11-27doc: misc API documentation fixes (#1834)Oleg Nosov
2019-11-26prepare v0.2.1 release (#1832)Carl Lerche
This includes `task::LocalSet` as well as some misc small fixes.
2019-11-26chore: replace Gitter badge with Discord (#1828)Artem Vorotnikov
2019-11-26chore: remove updating note from readme (#1824)Carl Lerche
2019-11-26chore: prepare v0.2.0 release (#1822)Carl Lerche
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-22codec: move into tokio-util (#1675)Carl Lerche
Related to #1318, Tokio APIs that are "less stable" are moved into a new `tokio-util` crate. This crate will mirror `tokio` and provide additional APIs that may require a greater rate of breaking changes. As examples require `tokio-util`, they are moved into a separate crate (`examples`). This has the added advantage of being able to avoid example only dependencies in the `tokio` crate.
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.
2019-08-20chore: bump to newer nightly (#1485)Taiki Endo
2019-08-17chore: prepare 0.2.0-alpha.2 release (#1465)Carl Lerche
2019-08-08chore: prepare for v0.2.0-alpha.1 release (#1410)Lucio Franco
2019-07-03Add missing links in README.md (#1233)Thomas Lacroix
Fixes: #1229
2019-06-05Merge branch 'v0.1.x' into merge-0.1Carl Lerche
2019-05-30Bump `tokio` version to v0.1.21. (#1113)Carl Lerche
2019-05-14Update Tokio to Rust 2018 (#1082)Carl Lerche
2019-04-22Bump `tokio` to 0.1.19. (#1053)Carl Lerche
This also bumps: - tokio-async-await (0.1.7) - tokio-buf (0.1.1) - tokio-sync (0.1.5) - tokio-threadpool (0.1.14)
2019-03-22Bump Tokio version to v0.1.18 (#997)Carl Lerche
Also bumps: - tokio-signal (0.2.8) - tokio-current-thread (0.1.6) - tokio-executor (0.1.7) - tokio-threadpool (0.1.13) [ci-release]