diff options
author | 2019-11-25 11:19:30 -0800 | |
---|---|---|
committer | 2019-11-25 11:19:30 -0800 | |
commit | b7c1f2a1357f7f9cdf2eb0187398fc80aaf7e28d (patch) | |
tree | 55d809ff83162a834b331c8aac4254bad47936bb /src | |
parent | cdd9fc09cd78bed7e2e7e00bab85a632c7fa0f88 (diff) | |
download | bytes-b7c1f2a1357f7f9cdf2eb0187398fc80aaf7e28d.tar.gz bytes-b7c1f2a1357f7f9cdf2eb0187398fc80aaf7e28d.tar.zst bytes-b7c1f2a1357f7f9cdf2eb0187398fc80aaf7e28d.zip |
prepare v0.5.0 release (#319)v0.5.0
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,3 +1,7 @@ +#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)] +#![doc(html_root_url = "https://docs.rs/bytes/0.5.0")] +#![no_std] + //! Provides abstractions for working with bytes. //! //! The `bytes` crate provides an efficient byte buffer structure @@ -68,10 +72,6 @@ //! perform a syscall, which has the potential of failing. Operations on `Buf` //! and `BufMut` are infallible. -#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)] -#![doc(html_root_url = "https://docs.rs/bytes/0.5.0")] - -#![no_std] extern crate alloc; |