[package]
edition = "2021"
name = "wpt"
version = "0.0.12"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for working with WPT data"
readme = false
license = "MIT OR Apache-2.0"
[features]
default = [
"zstd",
"xz2",
"jemalloc",
]
jemalloc = ["dep:tikv-jemallocator"]
xz2 = ["dep:xz2"]
zstd = ["dep:zstd"]
[[bin]]
name = "wpt"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.rayon]
version = "1.10.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde-jsonlines]
version = "0.6"
[dependencies.serde_json]
version = "1"
[dependencies.wptreport]
version = "0.0.12"
[dependencies.xz2]
version = "0.1"
optional = true
[dependencies.zstd]
version = "0.13"
optional = true
[target.'cfg(not(target_env = "msvc"))'.dependencies.tikv-jemallocator]
version = "0.6"
optional = true