[package]
edition = "2024"
rust-version = "1.88"
name = "wiretrail"
version = "0.3.1"
authors = ["John Neerdael <john@neerdael.nl>"]
build = false
exclude = [
"docs/",
"plugins/",
".claude-plugin/",
"*.har",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, deterministic, agent-friendly HAR analyzer CLI. heaptrail for network captures."
readme = "README.md"
keywords = [
"har",
"http",
"analysis",
"cli",
"debugging",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/johnneerdael/wiretrail"
[features]
default = []
yaml = []
[lib]
name = "har"
path = "src/lib.rs"
[[bin]]
name = "wiretrail"
path = "src/main.rs"
[[example]]
name = "printer"
path = "examples/printer.rs"
[[test]]
name = "cli_auth"
path = "tests/cli_auth.rs"
[[test]]
name = "cli_auto"
path = "tests/cli_auto.rs"
[[test]]
name = "cli_compare"
path = "tests/cli_compare.rs"
[[test]]
name = "cli_diagnose"
path = "tests/cli_diagnose.rs"
[[test]]
name = "cli_diff"
path = "tests/cli_diff.rs"
[[test]]
name = "cli_exports"
path = "tests/cli_exports.rs"
[[test]]
name = "cli_extract"
path = "tests/cli_extract.rs"
[[test]]
name = "cli_failures"
path = "tests/cli_failures.rs"
[[test]]
name = "cli_inventory"
path = "tests/cli_inventory.rs"
[[test]]
name = "cli_patterns"
path = "tests/cli_patterns.rs"
[[test]]
name = "cli_redaction"
path = "tests/cli_redaction.rs"
[[test]]
name = "cli_summary"
path = "tests/cli_summary.rs"
[[test]]
name = "regression"
path = "tests/regression.rs"
[dependencies.ahash]
version = "0.8.12"
[dependencies.chrono]
version = "0.4.44"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.memmap2]
version = "0.9.10"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_with]
version = "3.18.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.url]
version = "2.5"
[dependencies.yaml_serde]
version = "0.10.4"
[profile.release]
lto = "fat"
codegen-units = 1