locationoverflow/azalea-worker/Cargo.toml

32 lines
1.0 KiB
TOML

[package]
name = "azalea-worker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
simple_logger = "4.1"
serde = { version = "1", features = ["derive"] }
toml = "0.7"
url = { version = "2.3", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
serde_json = "1"
async-trait = "0.1"
websocket = { version = "0.26", features = ["async"] }
common = { path = "../common" }
tokio-threadpool = "0.1"
bevy_ecs = "0.11"
bevy = "0.11"
bevy_app = "0.11"
parking_lot = "0.12"
futures = "0.3"
regex = "1.8.1"
uuid = "1.3"
azalea-protocol = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }
azalea-crypto = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }
azalea-core = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }
azalea-buf = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }
azalea-client = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }