mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 12:57:39 +03:00
enable serde, add ByteString::as_slice() method
This commit is contained in:
parent
d01438325b
commit
fa6cd65cfc
5 changed files with 18 additions and 7 deletions
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -78,7 +78,7 @@ jobs:
|
|||
- name: Install cargo-cache
|
||||
continue-on-error: true
|
||||
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
|
||||
run: |
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-bytes"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
license = "MIT"
|
||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||
description = "Types and traits for working with bytes (bytes crate fork)"
|
||||
|
@ -12,7 +12,7 @@ categories = ["network-programming", "data-structures"]
|
|||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0", optional = true }
|
||||
serde = "1.0"
|
||||
bytes = "1.0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -69,6 +69,4 @@ mod string;
|
|||
pub use crate::bytes::{Bytes, BytesMut};
|
||||
pub use crate::string::ByteString;
|
||||
|
||||
// Optional Serde support
|
||||
#[cfg(feature = "serde")]
|
||||
mod serde;
|
||||
|
|
|
@ -14,6 +14,12 @@ impl ByteString {
|
|||
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.
|
||||
#[inline]
|
||||
pub fn as_bytes(&self) -> &Bytes {
|
||||
|
@ -258,7 +264,6 @@ impl fmt::Display for ByteString {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
mod serde {
|
||||
use serde::de::{Deserialize, Deserializer};
|
||||
use serde::ser::{Serialize, Serializer};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue