blob: 425c1823cf99d5773bb21ef327286300cb85ba8a (
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
26
27
28
29
30
31
|
[package]
name = "azalea-core"
description = "Miscellaneous things in Azalea."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
azalea-buf.workspace = true
azalea-registry.workspace = true
bevy_ecs = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
nohash-hasher.workspace = true
num-traits.workspace = true
simdnbt.workspace = true
tracing.workspace = true
azalea-chat = { workspace = true, features = ["simdnbt"] }
indexmap.workspace = true
crc32c.workspace = true
thiserror.workspace = true
uuid.workspace = true
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
[features]
bevy_ecs = ["dep:bevy_ecs"]
serde = ["dep:serde", "azalea-registry/serde"]
strict_registry = []
[lints]
workspace = true
|