mc_protocol/Cargo.toml

22 lines
571 B
TOML

[package]
name = "purple_cello_mc_protocol"
version = "0.1.0"
edition = "2021"
description = "Purple Cello implementation of the Minecraft multiplayer protocol"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1.75"
rand = "0.8.5"
aes = "0.7"
rsa = "0.6"
pkcs8 = "0.8"
crypto = { version = "0.5.1", features = ["digest"] }
sha1 = "0.10.6"
num-bigint = "0.4.5"