[package] description = "Cryptography features used in Minecraft." edition = "2021" license = "MIT" name = "azalea-crypto" version = "0.10.3+mc1.21.3" 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] aes = { workspace = true } azalea-buf = { path = "../azalea-buf", version = "0.10.0" } cfb8 = { workspace = true } num-bigint = { workspace = true } rand = { workspace = true, features = ["getrandom"] } rsa = { workspace = true, features = ["sha2"] } rsa_public_encrypt_pkcs1 = { workspace = true } sha-1 = { workspace = true } sha2 = { workspace = true } uuid = { workspace = true } [dev-dependencies] criterion = { workspace = true, features = ["html_reports"] } [[bench]] harness = false name = "my_benchmark"