aboutsummaryrefslogtreecommitdiff
path: root/azalea-crypto/Cargo.toml
blob: 49b56a7d87c151b62a2bbb89e92edf5da66cddb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "azalea-crypto"
description = "Cryptography features used in Minecraft."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[dev-dependencies]
criterion.workspace = true

[dependencies]
aes.workspace = true
azalea-buf = { workspace = true, optional = true }
cfb8.workspace = true
num-bigint.workspace = true
rand = { workspace = true, features = ["sys_rng"] }
# TODO: Remove when rand is fixed.
rand_core.workspace = true
rsa = { workspace = true, features = ["sha2"] }
rsa_public_encrypt_pkcs1.workspace = true
sha1.workspace = true
sha2.workspace = true
uuid.workspace = true
md-5.workspace = true

[features]
signing = ["dep:azalea-buf"]

[[bench]]
harness = false
name = "my_benchmark"

[lints]
workspace = true