mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
* Add rust rover to .gitignore * Fold dependency feature lists * Sort dependencies alphabetically * Update dependencies * Upgrade dependencies * Comment out unused dependencies * Nightly is broken right now :) * Fix conflict with derive_more * cargo autoinherit to merge dependencies * Fix clippy lints
28 lines
855 B
TOML
28 lines
855 B
TOML
[package]
|
|
description = "Cryptography features used in Minecraft."
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "azalea-crypto"
|
|
version = "0.10.3+mc1.21.1"
|
|
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"
|