aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-header-serde/Cargo.toml
blob: 2968cae7a957df34e9385e6579ac6e1683bfcd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "pingora-header-serde"
version = "0.1.0"
authors = ["Yuchen Wu <yuchen@cloudflare.com>"]
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/cloudflare/pingora"
categories = ["compression"]
keywords = ["http", "compression", "pingora"]
exclude = ["samples/*"]
description = """
HTTP header (de)serialization and compression for Pingora.
"""

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pingora_header_serde"
path = "src/lib.rs"

[[bin]]
name = "trainer"
path = "src/trainer.rs"

[dependencies]
zstd = "0.9.0"
zstd-safe = "4.1.1"
http = { workspace = true }
bytes = { workspace = true }
httparse = { workspace = true }
pingora-error = { version = "0.1.0", path = "../pingora-error" }
pingora-http = { version = "0.1.0", path = "../pingora-http" }
thread_local = "1.0"