20 lines
755 B
TOML
20 lines
755 B
TOML
[package]
|
|
name = "purple_cello_reverse_proxy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A reverse proxy for the Purple Cello Minecraft Server."
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
purple_cello_mc_protocol = { git = "https://github.com/PurpleCelloServer/purple_cello_mc_protocol.git", rev = "196592ae78e3878843c3dea99323c1477da6d380" }
|
|
purple_cello_mojang_api = { git = "https://github.com/PurpleCelloServer/mojang_api.git", rev = "08848a0a95b338bdaead303ac646cb3347cf1af6" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.21.5"
|
|
rand = "0.8.5"
|
|
lazy_static = "1.4"
|
|
rsa = "0.6"
|