Prep bytes release (#240)

This commit is contained in:
Nikolay Kim 2023-11-09 23:46:19 +06:00 committed by GitHub
parent 20e27b3f39
commit e020bb5296
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 10 deletions

View file

@ -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 }

View file

@ -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;

View file

@ -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,