mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Merge branch 'master' of github.com:ntex-rs/ntex
This commit is contained in:
commit
b816fbde44
3 changed files with 5 additions and 5 deletions
|
@ -17,7 +17,7 @@ path = "src/lib.rs"
|
|||
|
||||
[dependencies]
|
||||
bitflags = "1.2.1"
|
||||
bytes = "0.5.4"
|
||||
bytes = "0.5.6"
|
||||
futures-core = "0.3.4"
|
||||
futures-sink = "0.3.4"
|
||||
tokio = { version = "0.2.6", default-features=false }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use bytes::{BufMut, Bytes, BytesMut};
|
||||
use bytes::{Bytes, BytesMut, Buf};
|
||||
use std::io;
|
||||
|
||||
use super::{Decoder, Encoder};
|
||||
|
@ -13,9 +13,9 @@ impl Encoder for BytesCodec {
|
|||
type Item = Bytes;
|
||||
type Error = io::Error;
|
||||
|
||||
#[inline]
|
||||
fn encode(&mut self, item: Bytes, dst: &mut BytesMut) -> Result<(), Self::Error> {
|
||||
dst.reserve(item.len());
|
||||
dst.put(item);
|
||||
dst.extend_from_slice(item.bytes());
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ ntex-macros = "0.1"
|
|||
actix-threadpool = "0.3.1"
|
||||
base64 = "0.12"
|
||||
bitflags = "1.2"
|
||||
bytes = "0.5.4"
|
||||
bytes = "0.5.6"
|
||||
bytestring = "0.1.5"
|
||||
derive_more = "0.99.5"
|
||||
either = "1.5.3"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue