1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00
azalea/azalea-entity/Cargo.toml
mat 7405427199
Mining (#95)
* more mining stuff

* initialize azalea-tags crate

* more mining stuff 2

* mining in ecs

* well technically mining works but

no codegen for how long it takes to mine each block yet

* rename downloads to __cache__

it was bothering me since it's not *just* downloads

* codegen block behavior

* fix not sending packet to finish breaking block

* mining animation 🎉

* clippy

* cleanup, move Client::mine into a client extension

* add azalea/src/mining.rs

---------

Co-authored-by: mat <git@matdoes.dev>
2023-07-14 22:20:40 -05:00

25 lines
874 B
TOML

[package]
name = "azalea-entity"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = { version = "0.7.0", path = "../azalea-block" }
azalea-buf = { version = "0.7.0", path = "../azalea-buf" }
azalea-chat = { version = "0.7.0", path = "../azalea-chat" }
azalea-core = { version = "0.7.0", path = "../azalea-core" }
azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" }
azalea-nbt = { version = "0.7.0", path = "../azalea-nbt" }
azalea-registry = { version = "0.7.0", path = "../azalea-registry" }
azalea-world = { version = "0.7.0", path = "../azalea-world" }
bevy_app = "0.11.0"
bevy_ecs = "0.11.0"
derive_more = "0.99.17"
enum-as-inner = "0.6.0"
log = "0.4.19"
nohash-hasher = "0.2.0"
parking_lot = "0.12.1"
thiserror = "1.0.43"
uuid = "1.4.0"