blob: 1140d4b8a7e4f43788dfed5a30ee655f8c6ff7fb (
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-entity"
description = "Things related to Minecraft entities used by Azalea"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
azalea-block.workspace = true
azalea-buf.workspace = true
azalea-chat = { workspace = true, features = ["azalea-buf"] }
azalea-core.workspace = true
azalea-inventory.workspace = true
azalea-registry.workspace = true
azalea-world = { workspace = true, optional = true }
bevy_app = { workspace = true, optional = true }
bevy_ecs = { workspace = true, optional = true }
derive_more.workspace = true
enum-as-inner.workspace = true
nohash-hasher.workspace = true
parking_lot.workspace = true
thiserror.workspace = true
tracing.workspace = true
uuid.workspace = true
[features]
bevy_ecs = ["dep:bevy_ecs", "dep:bevy_app", "dep:azalea-world"]
[lints]
workspace = true
|