-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "proguard"
version = "5.10.1"
authors = ["Sentry <oss@sentry.io>"]
keywords = ["proguard", "retrace", "android", "r8"]
description = "Basic proguard mapping file handling for Rust"
repository = "https://github.com/getsentry/rust-proguard"
homepage = "https://sentry.io/welcome/"
license = "BSD-3-Clause"
readme = "README.md"
edition = "2021"
rust-version = "1.83.0"
[features]
uuid = ["dep:uuid"]
[lints.clippy]
unwrap-used = "warn"
[dependencies]
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.17"
uuid = { version = "1.18.0", features = ["v5"], optional = true }
watto = { version = "0.2.0", features = ["writer", "strings"] }
[dev-dependencies]
criterion = "0.7"
[[bench]]
name = "proguard_parsing"
harness = false
[[bench]]
name = "proguard_mapping"
harness = false