mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Prep bytes release (#240)
This commit is contained in:
parent
20e27b3f39
commit
e020bb5296
3 changed files with 5 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-bytes"
|
||||
version = "0.1.19"
|
||||
version = "0.1.20"
|
||||
license = "MIT"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
||||
description = "Types and traits for working with bytes (bytes crate fork)"
|
||||
|
@ -19,8 +19,8 @@ simd = ["simdutf8"]
|
|||
|
||||
[dependencies]
|
||||
bitflags = "2.4"
|
||||
bytes = "1.0.0"
|
||||
serde = "1.0.0"
|
||||
bytes = "1"
|
||||
serde = "1"
|
||||
futures-core = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
simdutf8 = { version = "0.1.4", optional = true }
|
||||
|
||||
|
|
|
@ -50,12 +50,7 @@
|
|||
//!
|
||||
//! [struct docs]: struct.Bytes.html
|
||||
|
||||
#![deny(
|
||||
warnings,
|
||||
// missing_docs,
|
||||
// missing_debug_implementations,
|
||||
rust_2018_idioms
|
||||
)]
|
||||
#![deny(warnings, missing_debug_implementations, rust_2018_idioms)]
|
||||
#![doc(html_root_url = "https://docs.rs/ntex-bytes/")]
|
||||
|
||||
pub mod buf;
|
||||
|
|
|
@ -19,7 +19,7 @@ pub struct PoolRef(&'static MemoryPool);
|
|||
#[derive(Copy, Clone, Debug, Hash, Eq, PartialEq, Ord, PartialOrd)]
|
||||
pub struct PoolId(u8);
|
||||
|
||||
#[derive(Copy, Clone)]
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
pub struct BufParams {
|
||||
pub high: u32,
|
||||
pub low: u32,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue