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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
[package]
name = "azalea-client"
description = "A headless Minecraft client."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
async-compat.workspace = true
azalea-auth.workspace = true
azalea-block.workspace = true
azalea-buf.workspace = true
azalea-chat.workspace = true
azalea-core.workspace = true
azalea-crypto.workspace = true
azalea-entity.workspace = true
azalea-inventory.workspace = true
azalea-physics.workspace = true
azalea-protocol = { workspace = true, features = ["connecting", "bevy_ecs"] }
azalea-registry.workspace = true
azalea-world.workspace = true
bevy_app.workspace = true
bevy_ecs.workspace = true
bevy_log = { workspace = true, optional = true }
bevy_tasks.workspace = true
bevy_time.workspace = true
chrono = { workspace = true, features = ["now"] }
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
indexmap.workspace = true
minecraft_folder_path.workspace = true
parking_lot.workspace = true
regex.workspace = true
reqwest = { workspace = true, optional = true, features = ["socks"] }
simdnbt.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing.workspace = true
uuid.workspace = true
# TODO: this is here to make bevy show system names in conflict warnings.
# in bevy 0.18, we should be able to just enable the debug feature on bevy_ecs instead.
bevy_utils = { workspace = true, features = ["debug"] }
[dev-dependencies]
eyre.workspace = true
[features]
default = ["log", "packet-event", "online-mode"]
# enables bevy_log::LogPlugin by default
log = ["bevy_log"]
packet-event = []
online-mode = [
"azalea-auth/online-mode",
"azalea-protocol/online-mode",
"dep:reqwest",
]
[lints]
workspace = true
|