6 releases

0.1.4 Dec 20, 2023
0.1.3 Sep 16, 2023
0.1.2 Jun 24, 2023
0.1.1 May 26, 2023
0.1.0-alpha Oct 16, 2022

#840 in Network programming

Download history 25/week @ 2024-01-08 100/week @ 2024-01-15 25/week @ 2024-01-22 1/week @ 2024-01-29 34/week @ 2024-02-05 82/week @ 2024-02-12 7/week @ 2024-02-19 66/week @ 2024-02-26 21/week @ 2024-03-04 41/week @ 2024-03-11 15/week @ 2024-03-18 53/week @ 2024-04-01 14/week @ 2024-04-08 4129/week @ 2024-04-15

4,199 downloads per month
Used in 2 crates (via wtransport-proto_lightyea…)

MIT/Apache

700KB
10K SLoC

C 9K SLoC // 0.0% comments Rust 895 SLoC // 0.0% comments Perl 339 SLoC // 0.1% comments Shell 52 SLoC // 0.1% comments

ls-qpack

crates.io docs.rs

QPACK: Field Compression for HTTP/3 (RFC 9204)

Rust implementation based on ls-qpack

Introduction

QPACK is a compressor for headers data used by HTTP/3. It allows correctness in the presence of out-of-order delivery, with flexibility for implementations to balance between resilience against head-of-line blocking and optimal compression ratio.

Example

use ls_qpack::decoder::Decoder;
use ls_qpack::encoder::Encoder;
use ls_qpack::StreamId;

const HEADERS: [(&str, &str); 2] = [(":status", "404"), ("foo", "bar")];

fn main() {
    let (encoded_headers, _) = Encoder::new()
        .encode_all(StreamId::new(0), HEADERS)
        .unwrap()
        .into();

    let decoded_headers = Decoder::new(0, 0)
        .decode(StreamId::new(0), encoded_headers)
        .unwrap()
        .take()
        .unwrap();

    println!("Decoded header: {:?}", decoded_headers);
}

Dependencies

~0–2MB
~41K SLoC