azalea/azalea-client/Cargo.toml

27 lines
932 B
TOML
Raw Normal View History

2021-12-16 05:07:10 +00:00
[package]
description = "A headless Minecraft client."
2021-12-16 05:07:10 +00:00
edition = "2021"
license = "MIT"
2021-12-16 05:10:55 +00:00
name = "azalea-client"
2022-10-17 14:37:05 +00:00
version = "0.1.0"
publish = false
2022-10-17 16:27:42 +00:00
release = false
2021-12-16 05:07:10 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.59"
2022-10-17 16:28:51 +00:00
azalea-auth = { path = "../azalea-auth", version = "0.2.0" }
2022-10-17 16:28:52 +00:00
azalea-block = { path = "../azalea-block", version = "0.2.0" }
2022-10-17 16:28:52 +00:00
azalea-chat = { path = "../azalea-chat", version = "0.2.0" }
2022-10-17 16:28:52 +00:00
azalea-core = { path = "../azalea-core", version = "0.2.0" }
2022-10-17 16:28:51 +00:00
azalea-crypto = { path = "../azalea-crypto", version = "0.2.0" }
2022-10-17 16:28:53 +00:00
azalea-physics = { path = "../azalea-physics", version = "0.2.0" }
2022-10-17 14:19:19 +00:00
azalea-protocol = { path = "../azalea-protocol", version = "0.1.0" }
2022-10-17 16:28:53 +00:00
azalea-world = { path = "../azalea-world", version = "0.2.0" }
2022-09-19 19:53:16 +00:00
log = "0.4.17"
parking_lot = "0.12.1"
2022-09-05 02:24:10 +00:00
thiserror = "^1.0.34"
2022-10-17 14:19:19 +00:00
tokio = { version = "^1.19.2", features = ["sync"] }
uuid = "^1.1.2"