-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 745 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
[package]
name = "cafebabe"
version = "0.9.0"
authors = ["Kartikaya Gupta"]
edition = "2018"
license = "0BSD"
description = "A simple parser for Java class files"
homepage = "https://github.com/staktrace/cafebabe/blob/main/README.md"
repository = "https://github.com/staktrace/cafebabe"
readme = "README.md"
keywords = ["parse", "java", "class", "jvm", "classfile"]
categories = ["parsing"]
exclude = [".gitignore", ".github/**", "examples/**", "tests/**"]
[badges]
maintenance = { status = "passively-maintained" }
[features]
default = []
threadsafe = []
[dependencies]
bitflags = "1.0"
cesu8 = "1.1.0"
[dev-dependencies]
rayon = "1.10.0"
[[example]]
name = "threadsafe"
path = "examples/threadsafe.rs"
required-features = ["threadsafe"]