[package]
name = "testlint"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Daniel Phang <daniel@testlint.com>"]
repository = "https://github.com/yourusername/testlint-sdk"
description = "A comprehensive toolkit for profiling and coverage reporting across multiple programming languages"
keywords = ["profiling", "coverage", "testing", "multi-language", "telemetry"]
categories = ["development-tools", "development-tools::testing", "development-tools::profiling"]
[lib]
name = "testlint_sdk"
path = "src/lib.rs"
[[bin]]
name = "profiler"
path = "src/main.rs"
[[bin]]
name = "upload_coverage"
path = "src/bin/upload_coverage.rs"
[[bin]]
name = "run_with_coverage"
path = "src/bin/run_with_coverage.rs"
[[bin]]
name = "runtime_coverage"
path = "src/bin/runtime_coverage.rs"
[[bin]]
name = "browser_coverage"
path = "src/bin/browser_coverage.rs"
[[bin]]
name = "upload_tests"
path = "src/bin/upload_tests.rs"
[dependencies]
regex = "1.12"
lazy_static = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
py-spy = "0.4.1"
reqwest = { version = "0.12", features = ["json", "blocking", "multipart"] }
tokio = { version = "1", features = ["full"] }
prost = "0.14"
prost-types = "0.14"
base64 = "0.22"
dirs = "6.0"
ctrlc = "3.5"
flate2 = "1.1"
tar = "0.4"
tempfile = "3.23"
walkdir = "2"
rayon = "1.11"
sha2 = "0.10"
quick-xml = "0.38"
progenitor = "0.11"
progenitor-client = "0.11"
anyhow = "1.0"
uuid = { version = "1.18", features = ["serde", "v4"] }
[build-dependencies]
prost-build = "0.14"
reqwest = { version = "0.12", features = ["blocking"] }
serde_json = "1.0"
serde_yaml = "0.9"
[dev-dependencies]
mockito = "1.7"
criterion = "0.7"
walkdir = "2"
[[bench]]
name = "test_detection_bench"
harness = false
[[bench]]
name = "tarball_bench"
harness = false
[[bench]]
name = "json_parsing_bench"
harness = false
[[bench]]
name = "anonymization_bench"
harness = false