mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
Fix data race in bytes (#244)
This commit is contained in:
parent
0e6f6db04e
commit
ae383c6d90
4 changed files with 7 additions and 5 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.21] (2023-11-1)
|
||||||
|
|
||||||
|
* Data race in BytesMut #243
|
||||||
|
|
||||||
## [0.1.19] (2023-01-23)
|
## [0.1.19] (2023-01-23)
|
||||||
|
|
||||||
* Add PollRef::resize_read_buf() and PollRef::resize_write_buf() helpers
|
* Add PollRef::resize_read_buf() and PollRef::resize_write_buf() helpers
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-bytes"
|
name = "ntex-bytes"
|
||||||
version = "0.1.20"
|
version = "0.1.21"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
||||||
description = "Types and traits for working with bytes (bytes crate fork)"
|
description = "Types and traits for working with bytes (bytes crate fork)"
|
||||||
|
|
|
@ -1814,9 +1814,7 @@ impl fmt::Write for BytesMut {
|
||||||
impl Clone for BytesMut {
|
impl Clone for BytesMut {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn clone(&self) -> BytesMut {
|
fn clone(&self) -> BytesMut {
|
||||||
BytesMut {
|
BytesMut::from(&self[..])
|
||||||
inner: unsafe { self.inner.shallow_clone() },
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ ntex-router = "0.5.2"
|
||||||
ntex-service = "1.2.7"
|
ntex-service = "1.2.7"
|
||||||
ntex-macros = "0.1.3"
|
ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.3.4"
|
ntex-util = "0.3.4"
|
||||||
ntex-bytes = "0.1.20"
|
ntex-bytes = "0.1.21"
|
||||||
ntex-h2 = "0.4.4"
|
ntex-h2 = "0.4.4"
|
||||||
ntex-rt = "0.4.10"
|
ntex-rt = "0.4.10"
|
||||||
ntex-io = "0.3.6"
|
ntex-io = "0.3.6"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue