aboutsummaryrefslogtreecommitdiff
path: root/azalea-chat/Cargo.toml
blob: 8a9cf2efb9326611152b546ae741f2284e58f2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
description = "Parse Minecraft chat messages."
edition = "2021"
license = "MIT"
name = "azalea-chat"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-chat"
version = "0.7.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["azalea-buf"]

[dependencies]
azalea-buf = { path = "../azalea-buf", features = [
    "serde_json",
], version = "^0.7.0", optional = true }
azalea-language = { path = "../azalea-language", version = "^0.7.0" }
log = "0.4.17"
once_cell = "1.16.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0.93"