-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
39 lines (34 loc) · 963 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
[package]
name = "hematite-nbt"
description = "A full-featured library for working with Minecraft's Named Binary Tag (NBT) file format, including Serde support."
documentation = "https://docs.rs/hematite-nbt/"
repository = "https://github.com/PistonDevelopers/hematite_nbt"
readme = "README.md"
license = "MIT"
keywords = ["nbt", "minecraft", "serde", "serialization"]
version = "0.5.2"
authors = [
"Aaron Jacobs <[email protected]>",
"Fenhl <[email protected]>",
"Carlos Cobo <[email protected]>"
]
[features]
default = ["serde"]
preserve_order = ["indexmap"]
[lib]
name = "nbt"
path = "src/lib.rs"
bench = false
[dependencies]
byteorder = "1.0.0"
cesu8 = "1.1.0"
flate2 = "1.0.16"
indexmap = { version = "1.4", optional = true, features = ["serde-1"] }
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = "0.3"
serde_derive = "1.0"
serde_json = "1.0"
[[bench]]
name = "filetests"
harness = false