azalea/azalea-crypto/Cargo.toml

29 lines
765 B
TOML
Raw Normal View History

[package]
description = "Cryptography features used in Minecraft."
edition = "2021"
license = "MIT"
name = "azalea-crypto"
version = "0.10.0"
2023-10-08 08:58:57 +00:00
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-crypto"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-17 20:43:42 +00:00
aes = "0.8.4"
azalea-buf = { path = "../azalea-buf", version = "0.10.0" }
cfb8 = "0.8.1"
2023-09-08 21:51:30 +00:00
num-bigint = "^0.4.4"
rand = { version = "^0.8.5", features = ["getrandom"] }
2023-12-05 17:06:24 +00:00
rsa = { version = "0.9.6", features = ["sha2"] }
rsa_public_encrypt_pkcs1 = "0.4.0"
sha-1 = "^0.10.1"
2023-10-03 06:36:57 +00:00
sha2 = "0.10.8"
2024-04-20 04:12:16 +00:00
uuid = "^1.8.0"
2022-08-28 20:08:43 +00:00
[dev-dependencies]
criterion = { version = "^0.5.1", features = ["html_reports"] }
2022-08-28 20:08:43 +00:00
[[bench]]
harness = false
name = "my_benchmark"