aboutsummaryrefslogtreecommitdiff
path: root/azalea-chat/Cargo.toml
blob: 184593d33753ed8dffd421e589836db77b7eb29f (plain)
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
[package]
name = "azalea-chat"
description = "Parse Minecraft chat messages."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[features]
default = []
simdnbt = ["dep:simdnbt"]
azalea-buf = ["dep:azalea-buf", "simdnbt"]
numbers = ["dep:azalea-registry", "dep:simdnbt"]

[dependencies]
azalea-buf = { workspace = true, optional = true, features = ["serde_json"] }
azalea-language.workspace = true
azalea-registry = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
simdnbt = { workspace = true, optional = true }
tracing.workspace = true

[lints]
workspace = true