10 releases (stable)

1.5.0 Nov 23, 2023
1.4.1 Dec 27, 2022
1.4.0 Jan 30, 2021
1.3.0 Oct 6, 2020
0.3.1 May 5, 2015

#15 in HTTP client

Download history 150101/week @ 2024-03-14 138178/week @ 2024-03-21 157465/week @ 2024-03-28 143497/week @ 2024-04-04 151259/week @ 2024-04-11 152979/week @ 2024-04-18 147897/week @ 2024-04-25 150245/week @ 2024-05-02 147224/week @ 2024-05-09 161374/week @ 2024-05-16 162937/week @ 2024-05-23 179777/week @ 2024-05-30 178660/week @ 2024-06-06 173236/week @ 2024-06-13 184039/week @ 2024-06-20 170355/week @ 2024-06-27

744,757 downloads per month
Used in 473 crates (11 directly)

MIT/Apache

18KB
357 lines

rust-chunked-transfer

Documentation

Encoder and decoder for HTTP chunked transfer coding. For more information about chunked transfer encoding:

Example

Decoding

use chunked_transfer::Decoder;
use std::io::Read;

let encoded = b"3\r\nhel\r\nb\r\nlo world!!!\r\n0\r\n\r\n";
let mut decoded = String::new();

let mut decoder = Decoder::new(encoded as &[u8]);
decoder.read_to_string(&mut decoded);

assert_eq!(decoded, "hello world!!!");

Encoding

use chunked_transfer::Encoder;
use std::io::Write;

let mut decoded = "hello world";
let mut encoded: Vec<u8> = vec![];

{
    let mut encoder = Encoder::with_chunks_size(&mut encoded, 5);
    encoder.write_all(decoded.as_bytes());
}

assert_eq!(encoded, b"5\r\nhello\r\n5\r\n worl\r\n1\r\nd\r\n0\r\n\r\n");

Authors

License

Licensed under either of:

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps