Carl Lerche
62f34e15ce
Bump tokio to 0.1.19. ( #1053 )
...
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-04-22 15:12:25 -07:00
Carl Lerche
cdde2e7a27
chore: repo maintenance + no path dependencies ( #991 )
...
- Move `tokio` into its own directory.
- Remove `path` dependencies.
- Run tests with once with crates.io dep and once with patched dep.
2019-03-19 14:58:59 -07:00
Carl Lerche
7039f02bb2
Bump tokio-async-await to 0.1.6 ( #921 )
2019-02-22 17:15:42 -08:00
Carl Lerche
961aae41c4
Bump version to 0.1.14. ( #836 )
...
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.
2019-01-06 23:25:55 -08:00
Carl Lerche
cab9a44e01
Bump version to v0.1.9 ( #666 )
...
This also includes bumps to subcrates.
* tokio-async-await (0.1.4)
* tokio-codec (0.1.1)
* tokio-current-thread (0.1.2)
* tokio-executor (0.1.5)
* tokio-io (0.1.9)
* tokio-reactor (0.1.6)
* tokio-tcp (0.1.2)
* tokio-threadpool (0.1.7)
* tokio-timer (0.2.7)
2018-09-26 22:32:51 -07:00
Carl Lerche
2f690d30bc
async-await: track nightly changes ( #661 )
...
The `tokio-async-await` crate is no longer a facade. Instead, the `tokio` crate
provides a feature flag to enable async/await support.
2018-09-26 10:10:47 -07:00
Liran Ringel
d275341fb2
Fix tokio-async-await tests compile errors ( #630 )
2018-09-18 13:49:08 -07:00
Nick Cameron
d735e5d527
async-await: update deps in tokio-async-await ( #639 )
2018-09-18 10:08:35 -07:00
Carl Lerche
16664189c1
async-await: move examples into dedicated crate ( #608 )
...
This works around a bug in the cargo renaming feature as well as allows
the use of `[patch]` in the `Cargo.toml`.
2018-09-06 13:36:59 -04:00
Carl Lerche
6828870608
async-await: bump version to v0.1.2 ( #619 )
2018-09-04 15:02:15 -07:00
Eunchong Yu
c03b23355b
Fix minimum version to export tokio::codec module ( #594 )
...
tokio-async-await: fix minimum version to export tokio::codec module (#594 )
2018-08-31 08:02:02 -04:00
Carl Lerche
d16032cf06
async-await: misc fixes and typos ( #585 )
2018-08-27 15:16:32 -07:00
Carl Lerche
b479ce78d3
add experimental async/await support. ( #582 )
...
This patch adds experimental async/await support to Tokio. It does this
by adding feature flags to existing libs only where necessary in order
to add nightly specific code (mostly `Unpin` implementations). It then
provides a new crate: `tokio-async-await` which is a shim layer on top
of `tokio`.
The `tokio-async-await` crate is expected to look exactly like `tokio`
does, but with async / await support. This strategy reduces the amount
of cfg guarding in the main libraries.
This patch also adds `tokio-channel`, which is copied from futures-rs
0.1 and adds the necessary `Unpin` implementations. In general, futures
0.1 is mostly unmaintained, so it will make sense for Tokio to take over
maintainership of key components regardless of async / await support.
2018-08-27 12:24:51 -07:00