diff options
| author | mat <git@matdoes.dev> | 2025-02-02 21:17:28 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-02-02 21:17:28 +0000 |
| commit | 8d110a9f7c568fd52fc6c213d707206287311319 (patch) | |
| tree | 6dfed16120460fd726a09a779c5a1387cfa0baf1 /azalea-crypto | |
| parent | b08d3d55d7351eff6e27a09d732078c038539958 (diff) | |
| download | azalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz | |
cleanup, fix warnings
Diffstat (limited to 'azalea-crypto')
| -rw-r--r-- | azalea-crypto/Cargo.toml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml index 488e2f1d..924ec99c 100644 --- a/azalea-crypto/Cargo.toml +++ b/azalea-crypto/Cargo.toml @@ -1,25 +1,25 @@ [package] name = "azalea-crypto" description = "Cryptography features used in Minecraft." -version = { workspace = true } -edition = { workspace = true } -license = { workspace = true } -repository = { workspace = true } +version.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true [dev-dependencies] -criterion = { workspace = true } +criterion.workspace = true [dependencies] -aes = { workspace = true } +aes.workspace = true azalea-buf = { path = "../azalea-buf", version = "0.11.0" } -cfb8 = { workspace = true } -num-bigint = { workspace = true } +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 } +rsa_public_encrypt_pkcs1.workspace = true +sha-1.workspace = true +sha2.workspace = true +uuid.workspace = true [[bench]] harness = false |
