-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (36 loc) · 985 Bytes
/
Cargo.toml
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
37
38
39
40
41
42
43
44
[package]
name = "mokapot"
version = "0.17.0"
edition = "2021"
description = "A library for ananlyzing JVM bytecode"
documentation = "https://docs.rs/mokapot"
license = "MIT"
repository = "https://github.com/henryhchchc/mokapot"
keywords = ["jvm", "java", "analysis", "bytecode"]
categories = ["parsing", "development-tools"]
[dependencies]
bitflags = "2.6"
cesu8 = "1.1"
derive_more = { version = "1", features = ["full"] }
document-features = "0.2"
itertools = "0.14"
petgraph = { version = "0.7", optional = true }
thiserror = "2.0"
walkdir = "2"
zip = { version = "2.2", optional = true, default-features = false, features = [
"deflate",
] }
[dev-dependencies]
proptest = "1"
proptest-derive = "0.5"
walkdir = "2"
rand = "0.8"
rayon = "1"
[build-dependencies]
glob = "0.3"
[features]
default = ["jar", "petgraph"]
## Enables loading classes from `.jar` files
jar = ["dep:zip"]
## Enables the analysis of control flow graphs with `petgraph`.
petgraph = ["dep:petgraph"]