[package]
edition = "2024"
rust-version = "1.88"
name = "wiretally"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Counts a child process's network bytes per domain via an ephemeral loopback proxy"
readme = "README.md"
keywords = [
"proxy",
"network",
"bandwidth",
"socks5",
"cli",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alexjbuck/wiretally"
[lib]
name = "wiretally"
path = "src/lib.rs"
[[bin]]
name = "wiretally"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "proxy"
path = "tests/proxy.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.bytes]
version = "1.12.1"
[dependencies.chrono]
version = "0.4.45"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.6.5"
features = ["derive"]
[dependencies.hickory-resolver]
version = "0.26.1"
[dependencies.http-body-util]
version = "0.1.4"
[dependencies.hyper]
version = "1.11.0"
features = [
"server",
"client",
"http1",
"http2",
]
[dependencies.hyper-util]
version = "0.1.20"
features = ["full"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dependencies.tower-service]
version = "0.3.3"
default-features = false
[dev-dependencies.proptest]
version = "1.11.0"
[profile.dev]
debug = 0
[profile.dist]
lto = "fat"
codegen-units = 1
inherits = "release"