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

#23 in HTTP server

Download history 173859/week @ 2024-12-17 61362/week @ 2024-12-24 136041/week @ 2024-12-31 255009/week @ 2025-01-07 232001/week @ 2025-01-14 217026/week @ 2025-01-21 220723/week @ 2025-01-28 249686/week @ 2025-02-04 225468/week @ 2025-02-11 253466/week @ 2025-02-18 288281/week @ 2025-02-25 300665/week @ 2025-03-04 291007/week @ 2025-03-11 282093/week @ 2025-03-18 290424/week @ 2025-03-25 234697/week @ 2025-04-01

1,157,597 downloads per month
Used in 520 crates (13 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