mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix dealloc for vec representation
This commit is contained in:
parent
0315d92401
commit
17631cd8a1
5 changed files with 13 additions and 6 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.7] (2021-12-06)
|
||||||
|
|
||||||
|
* Fix dealloc for vec representation
|
||||||
|
|
||||||
## [0.1.6] (2021-12-03)
|
## [0.1.6] (2021-12-03)
|
||||||
|
|
||||||
* Better api usability
|
* Better api usability
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-bytes"
|
name = "ntex-bytes"
|
||||||
version = "0.1.6"
|
version = "0.1.7"
|
||||||
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)"
|
||||||
|
|
|
@ -390,7 +390,7 @@ impl Bytes {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub const fn new() -> Bytes {
|
pub const fn new() -> Bytes {
|
||||||
Bytes {
|
Bytes {
|
||||||
inner: Inner::empty(),
|
inner: Inner::empty_inline(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1846,7 +1846,7 @@ impl Inner {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
const fn empty() -> Inner {
|
const fn empty_inline() -> Inner {
|
||||||
Inner {
|
Inner {
|
||||||
arc: unsafe { NonNull::new_unchecked(KIND_INLINE as *mut Shared) },
|
arc: unsafe { NonNull::new_unchecked(KIND_INLINE as *mut Shared) },
|
||||||
ptr: 0 as *mut u8,
|
ptr: 0 as *mut u8,
|
||||||
|
@ -2336,7 +2336,7 @@ impl Inner {
|
||||||
}
|
}
|
||||||
|
|
||||||
Inner {
|
Inner {
|
||||||
arc: NonNull::new_unchecked(arc as *mut Shared),
|
arc: NonNull::new_unchecked(arc),
|
||||||
..*self
|
..*self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2575,7 +2575,7 @@ fn release_shared_vec(ptr: *mut SharedVec) {
|
||||||
let cap = (*ptr).cap;
|
let cap = (*ptr).cap;
|
||||||
(*ptr).pool.release(cap);
|
(*ptr).pool.release(cap);
|
||||||
ptr::drop_in_place(ptr);
|
ptr::drop_in_place(ptr);
|
||||||
Vec::from_raw_parts(ptr, 0, cap);
|
Vec::<u8>::from_raw_parts(ptr as *mut u8, 0, cap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,9 @@ pub use self::path::{Path, PathIter};
|
||||||
pub use self::resource::ResourceDef;
|
pub use self::resource::ResourceDef;
|
||||||
pub use self::router::{Router, RouterBuilder};
|
pub use self::router::{Router, RouterBuilder};
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub struct ResourceInfo;
|
||||||
|
|
||||||
pub trait Resource<T: ResourcePath> {
|
pub trait Resource<T: ResourcePath> {
|
||||||
fn path(&self) -> &str;
|
fn path(&self) -> &str;
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ ntex-router = "0.5.1"
|
||||||
ntex-service = "0.2.1"
|
ntex-service = "0.2.1"
|
||||||
ntex-macros = "0.1.3"
|
ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.1.1"
|
ntex-util = "0.1.1"
|
||||||
ntex-bytes = "0.1.6"
|
ntex-bytes = "0.1.7"
|
||||||
|
|
||||||
base64 = "0.13"
|
base64 = "0.13"
|
||||||
bitflags = "1.3"
|
bitflags = "1.3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue