-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (31 loc) · 899 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
[package]
name = "crab_nbt"
description = "Up-to-date Rust crate for easy and intuitive working with NBT data."
repository = "https://github.com/CrabCraftDev/CrabNBT"
keywords = ["minecraft", "nbt", "crabcraft"]
categories = ["parser-implementations"]
authors = ["Norbiros", "SzczurekYT", "other CrabNBT Contributors"]
readme = "README.md"
license = "GPL-3.0-only"
version = "0.2.5"
edition = "2021"
exclude = ["tests", ".github"]
[features]
full = ["macro", "serde"]
default = ["macro"]
macro = []
serde = ["dep:serde"]
[dependencies]
bytes = "1.9.0"
cesu8 = "1.1.0"
derive_more = { version = "1.0.0", features = ["into", "from"] }
thiserror = "2.0.3"
serde = { version = "1.0.215", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
flate2 = "1.0.35"
[profile.bench]
debug = true
[[bench]]
name = "read"
harness = false