locationoverflow/azalea-worker/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

2023-07-20 20:03:10 +00:00
[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"
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" }
2023-07-22 03:10:08 +00:00
azalea-client = { version = "0.7", git = "https://git.e3t.cc/~core/azalea" }
async-tungstenite = { version = "0.22", features = ["tokio-runtime", "tokio-native-tls"] }
chrono = "0.4"