brogz 0.1.4

Measure wire bytes and timing for identity / gzip / brotli responses across a site's assets.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "brogz"
version = "0.1.4"
authors = ["Kira Kurentsov <immortalsteel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Measure wire bytes and timing for identity / gzip / brotli responses across a site's assets."
homepage = "https://github.com/Segodnya/brogz"
documentation = "https://docs.rs/brogz"
readme = "README.md"
keywords = [
    "compression",
    "brotli",
    "gzip",
    "http",
    "benchmark",
]
categories = [
    "command-line-utilities",
    "web-programming::http-client",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Segodnya/brogz"

[features]
cli = [
    "dep:clap",
    "dep:comfy-table",
    "dep:crossterm",
    "dep:tracing-subscriber",
]
default = ["cli"]

[lib]
name = "brogz"
path = "src/lib.rs"

[[bin]]
name = "brogz"
path = "src/bin/brogz.rs"
required-features = ["cli"]

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.comfy-table]
version = "7"
optional = true

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "std",
]
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
    "time",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true

[dependencies.url]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.wiremock]
version = "0.6"

[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"