llvm_profparser 0.7.0

Parsing and interpretation of llvm coverage profiles and generated data
Documentation
[package]
name = "llvm_profparser"
version = "0.7.0"
authors = ["xd009642 <danielmckenna93@gmail.com>"]
description = "Parsing and interpretation of llvm coverage profiles and generated data"
repository = "https://github.com/xd009642/llvm-profparser"
edition = "2018"
readme = "README.md"
license = "Apache-2.0"
categories = ["encoding"]
keywords = ["coverage", "llvm"]
exclude = ["tests/*", ".github/*", "benches/*"]
build = "build.rs"

[features]
default = ["cli"]
cli = ["structopt", "tracing-subscriber"]

[dependencies]
anyhow = "1.0.65"
flate2 = "1.0"
indexmap = "~1.8"
leb128 = "0.2.4"
md5 = "0.7"
nom = "7.0.0"
object = "0.26.0"
rustc-hash = "1.1.0"
structopt = { version = "0.3.21", optional = true }
thiserror = "1.0.30"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", optional = true }

[dev-dependencies]
assert_cmd = "2"
cargo_metadata = "0.14.2"
cfg-if = "1.0.0"
criterion = { version = "0.3.5", features = ["html_reports"] }
pretty_assertions = "0.7"
regex = "1.5.6"
serde = { version = "1.0.165", features = ["derive"] }
serde_yaml = "0.9.22"

[[bin]]
name = "profparser"
required-features = ["cli"]

[[bin]]
name = "cov"
required-features = ["cli"]

[[bench]]
name =  "profraw_parsing"
harness = false
path = "benches/profraw_parsing.rs"

[[bench]]
name =  "profdata_parsing"
harness = false
path = "benches/profdata_parsing.rs"

[[bench]]
name =  "report_merging"
harness = false
path = "benches/report_merging.rs"

[[bench]]
name = "coverage_mapping"
harness = false
path = "benches/coverage_mapping.rs"

[lints.rust]
unexpected_cfgs = { level = "allow"  }