enable serde, add ByteString::as_slice() method

This commit is contained in:
Nikolay Kim 2021-06-27 09:09:00 +06:00
parent d01438325b
commit fa6cd65cfc
5 changed files with 18 additions and 7 deletions

View file

@ -78,7 +78,7 @@ jobs:
- name: Install cargo-cache - name: Install cargo-cache
continue-on-error: true continue-on-error: true
run: | run: |
cargo install cargo-cache --no-default-features --features ci-autoclean cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
- name: Clear the cargo caches - name: Clear the cargo caches
run: | run: |

View file

@ -1,4 +1,12 @@
# 0.1.0 (2021-06-27) # Changes
## 0.1.1 (2021-06-27)
* Add `ByteString::as_slice()` method
* Enable serde
## 0.1.0 (2021-06-27)
* Add `Bytes::trimdown()` method * Add `Bytes::trimdown()` method

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-bytes" name = "ntex-bytes"
version = "0.1.0" version = "0.1.1"
license = "MIT" license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"] authors = ["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)"
@ -12,7 +12,7 @@ categories = ["network-programming", "data-structures"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
serde = { version = "1.0", optional = true } serde = "1.0"
bytes = "1.0.1" bytes = "1.0.1"
[dev-dependencies] [dev-dependencies]

View file

@ -69,6 +69,4 @@ mod string;
pub use crate::bytes::{Bytes, BytesMut}; pub use crate::bytes::{Bytes, BytesMut};
pub use crate::string::ByteString; pub use crate::string::ByteString;
// Optional Serde support
#[cfg(feature = "serde")]
mod serde; mod serde;

View file

@ -14,6 +14,12 @@ impl ByteString {
ByteString(Bytes::new()) ByteString(Bytes::new())
} }
/// Get a reference to the underlying bytes.
#[inline]
pub fn as_slice(&self) -> &[u8] {
self.0.as_ref()
}
/// Get a reference to the underlying `Bytes` object. /// Get a reference to the underlying `Bytes` object.
#[inline] #[inline]
pub fn as_bytes(&self) -> &Bytes { pub fn as_bytes(&self) -> &Bytes {
@ -258,7 +264,6 @@ impl fmt::Display for ByteString {
} }
} }
#[cfg(feature = "serde")]
mod serde { mod serde {
use serde::de::{Deserialize, Deserializer}; use serde::de::{Deserialize, Deserializer};
use serde::ser::{Serialize, Serializer}; use serde::ser::{Serialize, Serializer};