[package]
edition = "2021"
rust-version = "1.83.0"
name = "proguard"
version = "5.10.3"
authors = ["Sentry <oss@sentry.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Basic proguard mapping file handling for Rust"
homepage = "https://sentry.io/welcome/"
readme = "README.md"
keywords = [
"proguard",
"retrace",
"android",
"r8",
]
license = "BSD-3-Clause"
repository = "https://github.com/getsentry/rust-proguard"
[features]
uuid = ["dep:uuid"]
[lib]
name = "proguard"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "callback"
path = "tests/callback.rs"
[[test]]
name = "r8"
path = "tests/r8.rs"
[[test]]
name = "r8-ambiguous"
path = "tests/r8-ambiguous.rs"
[[test]]
name = "r8-exception-handling"
path = "tests/r8-exception-handling.rs"
[[test]]
name = "r8-inline"
path = "tests/r8-inline.rs"
[[test]]
name = "r8-line-number-handling"
path = "tests/r8-line-number-handling.rs"
[[test]]
name = "r8-method-overloading"
path = "tests/r8-method-overloading.rs"
[[test]]
name = "r8-source-file-edge-cases"
path = "tests/r8-source-file-edge-cases.rs"
[[test]]
name = "r8-synthetic"
path = "tests/r8-synthetic.rs"
[[test]]
name = "retrace"
path = "tests/retrace.rs"
[[bench]]
name = "proguard_mapping"
path = "benches/proguard_mapping.rs"
harness = false
[[bench]]
name = "proguard_parsing"
path = "benches/proguard_parsing.rs"
harness = false
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.uuid]
version = "1.18.0"
features = ["v5"]
optional = true
[dependencies.watto]
version = "0.2.0"
features = [
"writer",
"strings",
]
[dev-dependencies.criterion]
version = "0.7"
[lints.clippy]
unwrap-used = "warn"