mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
Bump Tokio version to v0.1.18 (#997)
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]
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
# 0.1.13 (March 22, 2019)
|
||||
|
||||
### Added
|
||||
- `TypedExecutor` implementations (#993)
|
||||
|
||||
# 0.1.12 (March 1, 2019)
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -7,8 +7,8 @@ name = "tokio-threadpool"
|
||||
# - README.md
|
||||
# - Update CHANGELOG.md.
|
||||
# - Create "v0.1.x" git tag.
|
||||
version = "0.1.12"
|
||||
documentation = "https://docs.rs/tokio-threadpool/0.1.12/tokio_threadpool"
|
||||
version = "0.1.13"
|
||||
documentation = "https://docs.rs/tokio-threadpool/0.1.13/tokio_threadpool"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://github.com/tokio-rs/tokio"
|
||||
license = "MIT"
|
||||
@@ -20,7 +20,7 @@ keywords = ["futures", "tokio"]
|
||||
categories = ["concurrency", "asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
tokio-executor = { version = "0.1.5", path = "../tokio-executor" }
|
||||
tokio-executor = "0.1.7"
|
||||
futures = "0.1.19"
|
||||
crossbeam-deque = "0.7.0"
|
||||
crossbeam-queue = "0.1.0"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
A library for scheduling execution of futures concurrently across a pool of
|
||||
threads.
|
||||
|
||||
[Documentation](https://docs.rs/tokio-threadpool/0.1.12/tokio_threadpool)
|
||||
[Documentation](https://docs.rs/tokio-threadpool/0.1.13/tokio_threadpool)
|
||||
|
||||
### Why not Rayon?
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.12")]
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-threadpool/0.1.13")]
|
||||
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||
|
||||
//! A work-stealing based thread pool for executing futures.
|
||||
|
||||
Reference in New Issue
Block a user