summaryrefslogtreecommitdiffstats
path: root/tokio-util/src
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2020-03-04 17:27:18 -0500
committerGitHub <noreply@github.com>2020-03-04 17:27:18 -0500
commit5ede2e4d6b2f732e83e33f9693682dffc6c9f5b0 (patch)
treef6abb34c5911fb5da92d0686409d6a675aacb967 /tokio-util/src
parent9d4d076189822e32574f8123efe21c732103f4d4 (diff)
util: Prepare `0.3.0` release (#2296)
Signed-off-by: Lucio Franco <luciofranco14@gmail.com> Co-authored-by: David Barsky <me@davidbarsky.com> Co-authored-by: Eliza Weisman <eliza@buoyant.io>
Diffstat (limited to 'tokio-util/src')
-rw-r--r--tokio-util/src/lib.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/tokio-util/src/lib.rs b/tokio-util/src/lib.rs
index 4554516e..44ec2b74 100644
--- a/tokio-util/src/lib.rs
+++ b/tokio-util/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-util/0.2.0")]
+#![doc(html_root_url = "https://docs.rs/tokio-util/0.3.0")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,
@@ -14,6 +14,12 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
//! Utilities for working with Tokio.
+//!
+//! This crate is not versioned in lockstep with the core
+//! [`tokio`] crate. However, `tokio-util` _will_ respect Rust's
+//! semantic versioning policy, especially with regard to breaking changes.
+//!
+//! [`tokio`]: https://docs.rs/tokio
#[macro_use]
mod cfg;