mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
chore: prepare for v0.2.0-alpha.1 release (#1410)
This commit is contained in:
committed by
Carl Lerche
parent
2e69f2a7fd
commit
50e5d401df
@@ -1,3 +1,8 @@
|
||||
# 0.2.0-alpha.1 (August 8, 2019)
|
||||
|
||||
### Changed
|
||||
- Switch to `async`, `await`, and `std::future`.
|
||||
|
||||
# 0.1.6 (June 4, 2019)
|
||||
|
||||
### Added
|
||||
|
||||
+9
-11
@@ -5,34 +5,32 @@ name = "tokio-sync"
|
||||
# - Update html_root_url.
|
||||
# - Update doc url
|
||||
# - Cargo.toml
|
||||
# - README.md
|
||||
# - Update CHANGELOG.md.
|
||||
# - Create "v0.2.x" git tag.
|
||||
version = "0.2.0"
|
||||
version = "0.2.0-alpha.1"
|
||||
edition = "2018"
|
||||
authors = ["Carl Lerche <[email protected]>"]
|
||||
authors = ["Tokio Contributors <[email protected]>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://tokio.rs"
|
||||
documentation = "https://docs.rs/tokio-sync/0.1.5/tokio_sync"
|
||||
documentation = "https://docs.rs/tokio-sync/0.2.0-alpha.1/tokio_sync"
|
||||
description = """
|
||||
Synchronization utilities.
|
||||
"""
|
||||
categories = ["asynchronous"]
|
||||
publish = false
|
||||
|
||||
[features]
|
||||
async-traits = ["futures-sink-preview"]
|
||||
|
||||
[dependencies]
|
||||
fnv = "1.0.6"
|
||||
futures-core-preview = { version = "= 0.3.0-alpha.17" }
|
||||
futures-sink-preview = { version = "= 0.3.0-alpha.17", optional = true }
|
||||
futures-util-preview = { version = "= 0.3.0-alpha.17" }
|
||||
futures-core-preview = { version = "=0.3.0-alpha.17" }
|
||||
futures-sink-preview = { version = "=0.3.0-alpha.17", optional = true }
|
||||
futures-util-preview = { version = "=0.3.0-alpha.17" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
|
||||
tokio-test = { version = "=0.2.0-alpha.1", path = "../tokio-test" }
|
||||
|
||||
env_logger = { version = "0.5", default-features = false }
|
||||
pin-utils = "0.1.0-alpha.4"
|
||||
tokio = { version = "*", path = "../tokio" }
|
||||
tokio-test = { version = "0.2.0", path = "../tokio-test" }
|
||||
loom = { version = "0.2.0", features = ["futures"] }
|
||||
|
||||
@@ -2,12 +2,6 @@
|
||||
|
||||
Synchronization utilities
|
||||
|
||||
[Documentation](https://docs.rs/tokio-sync/0.1.6/tokio_sync/)
|
||||
|
||||
## Overview
|
||||
|
||||
This crate provides synchronization utilities for usage with Tokio.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the [MIT license](LICENSE).
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.5")]
|
||||
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.2.0-alpha.1")]
|
||||
#![deny(
|
||||
missing_debug_implementations,
|
||||
missing_docs,
|
||||
|
||||
@@ -58,7 +58,7 @@ async fn async_send_recv_with_buffer() {
|
||||
fn send_sink_recv_with_buffer() {
|
||||
use futures_core::Stream;
|
||||
use futures_sink::Sink;
|
||||
use pin_utils::pin_mut;
|
||||
use futures_util::pin_mut;
|
||||
|
||||
let mut t1 = MockTask::new();
|
||||
|
||||
@@ -171,7 +171,7 @@ async fn async_send_recv_unbounded() {
|
||||
fn sink_send_recv_unbounded() {
|
||||
use futures_core::Stream;
|
||||
use futures_sink::Sink;
|
||||
use pin_utils::pin_mut;
|
||||
use futures_util::pin_mut;
|
||||
|
||||
let mut t1 = MockTask::new();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user