summaryrefslogtreecommitdiffstats
path: root/README.md
AgeCommit message (Collapse)Author
2019-03-01trace: Fix tokio-trace documentation url in the README (#939)Lucio Franco
2019-03-01Set up CI with Azure Pipelines (#926)Carl Lerche
Use Azure Pipelines for CI. This migrates away from Travis and Appveyor.
2019-01-25Bump Tokio to v0.1.15. (#869)Carl Lerche
Also bumps: - tokio-sync (0.1.0) - tokio-threadpool (0.1.11) - tokio-timer (0.2.9)
2019-01-06Bump version to 0.1.14. (#836)Carl Lerche
Also bumps: * tokio-async-await (0.1.5) * tokio-executor (0.1.6) * tokio-fs (0.1.5) * tokio-io (0.1.11) * tokio-reactor (0.1.8) * tokio-tcp (0.1.3) * tokio-threadpool (0.1.10) * tokio-tls (0.2.1) * tokio-uds (0.2.5) ...and updates LICENSE files to 2019.
2018-09-26async-await: track nightly changes (#661)Carl Lerche
The `tokio-async-await` crate is no longer a facade. Instead, the `tokio` crate provides a feature flag to enable async/await support.
2018-08-30readme: fix section ordering (#600)Carl Lerche
2018-08-29Bump minimum supported version & document support policy (#599)Eliza Weisman
* Bump minimum supported version & document support policy Signed-off-by: Eliza Weisman <eliza@buoyant.io>
2018-08-24draft initial CONTRIBUTING guide (#567)Carl Lerche
This guide was adopted from the node.js project.
2018-07-22General rustdoc improvements (#450)David Kellum
* Normalize links to docs.rs/CRATE/M.N/... docs.rs is smart enough to show docs for the latest M.N.P release when M.N is used in the link. For example: https://docs.rs/mio/0.6/mio/struct.Poll.html ..will show mio 0.6.14 and later docs. While using the `M.N.*` (ASTERISK) syntax also works, `M.N` is the more common usage, so standarize a few existing links to that format. * Fix missing or malformed rustdoc links * executor lib rustdoc minor format change * Promote tokio-threadpool crate level comments to rustdoc * Replace hidden tokio::executor::thread_pool docs with deprecation note * Fix typo/simplify util module rustdoc * Reuse some tokio::executor::thread_pool rustdoc for the crate Relates to #421
2018-06-13Bump version of a number of sub crates (#414)Carl Lerche
This includes: * tokio-codec (0.1.0) * tokio-current-thread (0.1.0) * tokio-fs (0.1.1) * tokio-io (0.1.7) * tokio-reactor (0.1.2) * tokio-udp (0.1.1)
2018-05-23Fix a small typo in README.md (#373)Roman Zeyde
2018-05-14Import tokio-uds (#365)Carl Lerche
This imports tokio-uds from the dedicated repo.
2018-05-14Add Gitter badge to README (#358)Carl Lerche
2018-05-02Bump version to v0.1.6 (#336)Carl Lerche
2018-03-14Move tokio::net module into tokio tcp/udp crates (#224)Sam Rijs
2018-03-09Relicense Tokio exclusively under the MIT license. (#215)Carl Lerche
This patch relicenses the Tokio project exclusively under the MIT license. Before this, the project was dual licensed under MIT and Apache 2. As such, switching to only MIT is permitted. Fixes #202
2018-03-07Update readme (#196)Carl Lerche
2018-03-05Fix typos (#176)Philip Munksgaard
2018-03-02Extract the reactor to a dedicated crate. (#169)Carl Lerche
This allows libraries that require access to reactor related types to depend on this crate without having to depend on the entirety of Tokio. For example, libraries that implement their custom I/O resource will need to access `Registration` or `PollEvented`.
2018-03-01Add `io` facade and update `reactor` docs (#166)Carl Lerche
This patch updates the documentation for a number of APIs. It also introduces a prelude module and an io facade module, re-exporting types from tokio-io.
2018-02-28Update the README (#164)Carl Lerche
2018-02-28Update AppVeyor badge URL (#163)Carl Lerche
2018-02-27Update badges in README (#159)Roman
2018-02-07Prepare for tokio 0.1 release (#119)Carl Lerche
2018-02-02Fix link to documentation in README (#108)Carl Lerche
2018-01-05Expand CI coverage and update README (#80)Alex Crichton
Closes #64
2017-11-02s/serde/tokio/Seamus Abshere
2017-10-30Rename crate to tokioCarl Lerche
2017-10-30Clarify wording of license information in README.Alex Crichton
This text historically was copied verbatim from rust-lang/rust's own README [1] with the intention of licensing projects the same as rustc's own license, namely a dual MIT/Apache-2.0 license. The clause about "various BSD-like licenses" isn't actually correct for almost all projects other than rust-lang/rust and the wording around "both" was slightly ambiguous. This commit updates the wording to match more precisely what's in the standard library [2], namely clarifying that there aren't any BSD-like licenses in this repository and that the source is licensable under either license, at your own discretion. [1]: https://github.com/rust-lang/rust/tree/f0fe716dbcbf2363ab8f929325d32a17e51039d0#license [2]: https://github.com/rust-lang/rust/blob/f0fe716dbcbf2363ab8f929325d32a17e51039d0/src/libstd/lib.rs#L5-L9
2017-01-11Point to tokio.rsAlex Crichton
2017-01-09Update docs to docs.rsAlex Crichton
2016-11-17Grammar in README.mdAshkan Kiani
2016-09-09Update readme with crates.io depAlex Crichton
2016-09-02Fix the link for the echo server example.Jonathan Reem
2016-08-26Update appveyor linkAlex Crichton
2016-08-26Update appveyor statusAlex Crichton
2016-08-26Rename to tokio-core, add in futures-ioAlex Crichton
Renames the futures-mio crate to tokio-core, pulls in the futures-io crate under an `io` module, and gets everything compiling.
2016-08-08Fix link in mio READMEAlex Crichton
2016-08-08Add lots of README filesAlex Crichton
2016-08-05More info and more READMEsAlex Crichton