mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
* Use workspace `Cargo.toml` for dependencies and package atributes * Fix a couple clippy warnings * Update bevy, update build script, move deps to workspace, and fix clippy warnings * Remove carrots from crate versions The default behavior is the same * Remove unused dependencies Compiles and all tests pass, so it should be fine * Update codegen to use `std::sync::LazyLock` instead of `once_cell::sync::Lazy` * Update Bevy to `0.15.0-rc.3` Surprisingly little needed to be changed * Update to bevy 0.15.0 * Fix leftover merge issues * Clarify the reason the swarm can't connect * Fix duplicate lint, remove `log` dependency
65 lines
2.3 KiB
TOML
65 lines
2.3 KiB
TOML
[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]
|
|
anyhow = { workspace = true }
|
|
#async-trait = { workspace = true }
|
|
azalea-auth = { version = "0.10.0", path = "../azalea-auth" }
|
|
azalea-block = { version = "0.10.0", path = "../azalea-block" }
|
|
azalea-brigadier = { version = "0.10.0", path = "../azalea-brigadier" }
|
|
azalea-buf = { version = "0.10.0", path = "../azalea-buf" }
|
|
azalea-chat = { version = "0.10.0", path = "../azalea-chat" }
|
|
azalea-client = { version = "0.10.0", path = "../azalea-client", default-features = false }
|
|
azalea-core = { version = "0.10.0", path = "../azalea-core" }
|
|
azalea-entity = { version = "0.10.0", path = "../azalea-entity" }
|
|
azalea-inventory = { version = "0.10.0", path = "../azalea-inventory" }
|
|
azalea-physics = { version = "0.10.0", path = "../azalea-physics" }
|
|
azalea-protocol = { version = "0.10.0", path = "../azalea-protocol" }
|
|
azalea-registry = { version = "0.10.0", path = "../azalea-registry" }
|
|
azalea-world = { version = "0.10.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 }
|
|
nohash-hasher = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
parking_lot = { workspace = true, features = ["deadlock_detection"] }
|
|
priority-queue = { 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 }
|
|
rand = { 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
|