aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/Cargo.toml
blob: 6a7c9d4f4848bc56cca3d723533ccde6018ad6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "azalea-brigadier"
description = "A port of Mojang's Brigadier command parsing and dispatching library."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[dev-dependencies]
bevy_app.workspace = true
bevy_ecs.workspace = true

[dependencies]
azalea-buf = { workspace = true, optional = true }
azalea-chat = { workspace = true, optional = true }
parking_lot.workspace = true

[features]
azalea-buf = ["dep:azalea-buf", "dep:azalea-chat", "azalea-chat/azalea-buf"]

[lints]
workspace = true