mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-25 00:00:22 +02:00
prepare for 0.6 work (#428)
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
# 0.6.0 (unreleased)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 0.5.6 (July 13, 2020)
|
# 0.5.6 (July 13, 2020)
|
||||||
|
|
||||||
- Improve `BytesMut` to reuse buffer when fully `advance`d.
|
- Improve `BytesMut` to reuse buffer when fully `advance`d.
|
||||||
|
|||||||
+4
-3
@@ -5,20 +5,21 @@ name = "bytes"
|
|||||||
# - Update html_root_url.
|
# - Update html_root_url.
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.5.x" git tag.
|
# - Create "v0.6.x" git tag.
|
||||||
version = "0.5.6"
|
version = "0.6.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = [
|
authors = [
|
||||||
"Carl Lerche <[email protected]>",
|
"Carl Lerche <[email protected]>",
|
||||||
"Sean McArthur <[email protected]>",
|
"Sean McArthur <[email protected]>",
|
||||||
]
|
]
|
||||||
description = "Types and traits for working with bytes"
|
description = "Types and traits for working with bytes"
|
||||||
documentation = "https://docs.rs/bytes"
|
documentation = "https://docs.rs/bytes/0.6.0/bytes/"
|
||||||
repository = "https://github.com/tokio-rs/bytes"
|
repository = "https://github.com/tokio-rs/bytes"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["buffers", "zero-copy", "io"]
|
keywords = ["buffers", "zero-copy", "io"]
|
||||||
categories = ["network-programming", "data-structures"]
|
categories = ["network-programming", "data-structures"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
publish = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
+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.6")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.6.0")]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
//! Provides abstractions for working with bytes.
|
//! Provides abstractions for working with bytes.
|
||||||
|
|||||||
Reference in New Issue
Block a user