mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-25 00:00:22 +02:00
v0.5.6
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
# 0.5.6 (July 13, 2020)
|
||||||
|
|
||||||
|
- Improve `BytesMut` to reuse buffer when fully `advance`d.
|
||||||
|
- Mark `BytesMut::{as_mut, set_len}` with `#[inline]`.
|
||||||
|
- Relax synchronization when cloning in shared vtable of `Bytes`.
|
||||||
|
- Move `loom` to `dev-dependencies`.
|
||||||
|
|
||||||
# 0.5.5 (June 18, 2020)
|
# 0.5.5 (June 18, 2020)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ name = "bytes"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.5.x" git tag.
|
# - Create "v0.5.x" git tag.
|
||||||
version = "0.5.5"
|
version = "0.5.6"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = [
|
authors = [
|
||||||
"Carl Lerche <[email protected]>",
|
"Carl Lerche <[email protected]>",
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
no_crate_inject,
|
no_crate_inject,
|
||||||
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
||||||
))]
|
))]
|
||||||
#![doc(html_root_url = "https://docs.rs/bytes/0.5.5")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.5.6")]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
//! Provides abstractions for working with bytes.
|
//! Provides abstractions for working with bytes.
|
||||||
|
|||||||
Reference in New Issue
Block a user