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
60
61
62
63
64
65
66
67
68
69
70
71
|
[package]
name = "azalea"
description = "A framework for creating Minecraft bots."
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[package.metadata.release]
pre-release-replacements = [
{ file = "README.md", search = "`azalea = \"[a-z0-9\\.-]+\"`", replace = "`azalea = \"{{version}}\"`" },
]
[dependencies]
#async-trait = { workspace = true }
azalea-auth = { version = "0.11.0", path = "../azalea-auth" }
azalea-block = { version = "0.11.0", path = "../azalea-block" }
azalea-brigadier = { version = "0.11.0", path = "../azalea-brigadier" }
azalea-buf = { version = "0.11.0", path = "../azalea-buf" }
azalea-chat = { version = "0.11.0", path = "../azalea-chat" }
azalea-client = { version = "0.11.0", path = "../azalea-client", default-features = false }
azalea-core = { version = "0.11.0", path = "../azalea-core" }
azalea-entity = { version = "0.11.0", path = "../azalea-entity" }
azalea-inventory = { version = "0.11.0", path = "../azalea-inventory" }
azalea-physics = { version = "0.11.0", path = "../azalea-physics" }
azalea-protocol = { version = "0.11.0", path = "../azalea-protocol" }
azalea-registry = { version = "0.11.0", path = "../azalea-registry" }
azalea-world = { version = "0.11.0", path = "../azalea-world" }
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
bevy_log = { workspace = true }
bevy_tasks = { workspace = true, features = ["multi_threaded"] }
# bevy_time = { workspace = true }
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
futures = { workspace = true }
futures-lite = { workspace = true }
indexmap = "2.7.0"
nohash-hasher = { workspace = true }
num-format = { workspace = true }
num-traits = { workspace = true }
parking_lot = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true, optional = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
parking_lot = { workspace = true, features = ["deadlock_detection"] }
rand = { workspace = true }
anyhow = { workspace = true }
[features]
default = ["log", "serde"]
# enables bevy_log::LogPlugin by default
log = ["azalea-client/log"]
serde = ["dep:serde"]
[[bench]]
name = "pathfinder"
harness = false
[[bench]]
name = "physics"
harness = false
[[bench]]
name = "checks"
harness = false
|