[package]
edition = "2021"
name = "drcov"
version = "0.1.0"
authors = ["redthing1 <redthing1@alt.icu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a rust library for parsing and writing DrCov coverage files."
readme = "README.md"
keywords = [
"drcov",
"coverage",
"dynamorio",
"security",
"analysis",
]
categories = [
"development-tools",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/redthing1/drcov-rs"
[features]
cli = ["dep:clap"]
default = []
[lib]
name = "drcov"
path = "src/lib.rs"
[[bin]]
name = "drcov-read"
path = "src/bin/drcov-read.rs"
required-features = ["cli"]
[[example]]
name = "readme_example"
path = "examples/readme_example.rs"
[[test]]
name = "boundary_condition_tests"
path = "tests/boundary_condition_tests.rs"
[[test]]
name = "builder_validation_tests"
path = "tests/builder_validation_tests.rs"
[[test]]
name = "edge_case_tests"
path = "tests/edge_case_tests.rs"
[[test]]
name = "format_compatibility_tests"
path = "tests/format_compatibility_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "lookup_and_resolution_tests"
path = "tests/lookup_and_resolution_tests.rs"
[[test]]
name = "performance_tests"
path = "tests/performance_tests.rs"
[[test]]
name = "serialization_consistency_tests"
path = "tests/serialization_consistency_tests.rs"
[[test]]
name = "test_with_real_files"
path = "tests/test_with_real_files.rs"
[dependencies.clap]
version = "4.0"
features = ["derive"]
optional = true
[dev-dependencies.tempfile]
version = "3.0"