mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.2.1 (August 19, 2018)
|
||||||
|
|
||||||
|
* Re-export `ConnectFuture` (#430).
|
||||||
|
* bug: Fix `recv_from` (#452).
|
||||||
|
* bug: Fix build on FreeBSD.
|
||||||
|
|
||||||
# 0.2.0 (June 6, 2018)
|
# 0.2.0 (June 6, 2018)
|
||||||
|
|
||||||
* Initial 0.2 release.
|
* Initial 0.2 release.
|
||||||
|
|||||||
@@ -4,12 +4,12 @@ name = "tokio-uds"
|
|||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.2.x" git tag.
|
# - Create "v0.2.x" git tag.
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://github.com/tokio-rs/tokio"
|
homepage = "https://github.com/tokio-rs/tokio"
|
||||||
documentation = "https://docs.rs/tokio-uds"
|
documentation = "https://docs.rs/tokio-uds/0.2.1/tokio_uds/"
|
||||||
description = """
|
description = """
|
||||||
Unix Domain sockets for Tokio
|
Unix Domain sockets for Tokio
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
||||||
|
|
||||||
#![cfg(unix)]
|
#![cfg(unix)]
|
||||||
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.0")]
|
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.1")]
|
||||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
|
|
||||||
extern crate bytes;
|
extern crate bytes;
|
||||||
|
|||||||
Reference in New Issue
Block a user