mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
* 23w51b * make recalculate_near_end_of_path public so other plugins can do .after(recalculate_near_end_of_path) * update to 24w03a i think * start implementing 24w13a * registries work (but a lot of packets are still broken) * fix recipes and commands packets * i love codecs :D i am not going insane :D mojang's java is very readable :D * item components are "implemented" meowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeowmeow * update to 1.20.5-pre3 * fix all the broken packets and clippy (mojang please don't do an update like this again or i will murder someone) * 1.20.5-rc1 * fix failing tests * 1.20.5
63 lines
2 KiB
TOML
63 lines
2 KiB
TOML
[package]
|
|
description = "A framework for creating Minecraft bots."
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "azalea"
|
|
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea"
|
|
version = "0.9.1"
|
|
|
|
[package.metadata.release]
|
|
pre-release-replacements = [
|
|
{ file = "README.md", search = "`azalea = \"[a-z0-9\\.-]+\"`", replace = "`azalea = \"{{version}}\"`" },
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = "^1.0.82"
|
|
async-trait = "0.1.80"
|
|
azalea-block = { version = "0.9.0", path = "../azalea-block" }
|
|
azalea-chat = { version = "0.9.0", path = "../azalea-chat" }
|
|
azalea-client = { version = "0.9.0", path = "../azalea-client", default-features = false }
|
|
azalea-core = { version = "0.9.0", path = "../azalea-core" }
|
|
azalea-physics = { version = "0.9.0", path = "../azalea-physics" }
|
|
azalea-protocol = { version = "0.9.0", path = "../azalea-protocol" }
|
|
azalea-registry = { version = "0.9.0", path = "../azalea-registry" }
|
|
azalea-world = { version = "0.9.0", path = "../azalea-world" }
|
|
azalea-auth = { version = "0.9.0", path = "../azalea-auth" }
|
|
azalea-brigadier = { version = "0.9.0", path = "../azalea-brigadier" }
|
|
azalea-buf = { version = "0.9.0", path = "../azalea-buf" }
|
|
bevy_app = "0.13.2"
|
|
bevy_ecs = "0.13.2"
|
|
bevy_tasks = { version = "0.13.2", features = ["multi-threaded"] }
|
|
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
|
|
futures = "0.3.30"
|
|
futures-lite = "2.3.0"
|
|
tracing = "0.1.40"
|
|
nohash-hasher = "0.2.0"
|
|
num-traits = "0.2.18"
|
|
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
|
|
priority-queue = "2.0.2"
|
|
thiserror = "^1.0.58"
|
|
tokio = "^1.37.0"
|
|
uuid = "1.8.0"
|
|
bevy_log = "0.13.2"
|
|
bevy_time = "0.13.2"
|
|
rustc-hash = "1.1.0"
|
|
azalea-inventory = { version = "0.9.0", path = "../azalea-inventory" }
|
|
azalea-entity = { version = "0.9.0", path = "../azalea-entity" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5.1"
|
|
rand = "0.8.5"
|
|
|
|
[features]
|
|
default = ["log"]
|
|
# enables bevy_log::LogPlugin by default
|
|
log = ["azalea-client/log"]
|
|
|
|
[[bench]]
|
|
name = "pathfinder"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "physics"
|
|
harness = false
|