diff options
| author | Shayne Hartford <shaybox@shaybox.com> | 2024-11-23 03:29:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-23 02:29:30 -0600 |
| commit | dfdc3144b61b6750ad62fb493b7c00c6c820c90b (patch) | |
| tree | 0cca5bcea62b3562152944b278c494401531d4d7 /azalea-crypto | |
| parent | e443c5d76e706132ab554e97513d2b159f4ab0a1 (diff) | |
| download | azalea-drasl-dfdc3144b61b6750ad62fb493b7c00c6c820c90b.tar.xz | |
Update and merge the dependencies (#187)
* 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
Diffstat (limited to 'azalea-crypto')
| -rw-r--r-- | azalea-crypto/Cargo.toml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml index 0584f338..6369377b 100644 --- a/azalea-crypto/Cargo.toml +++ b/azalea-crypto/Cargo.toml @@ -9,19 +9,19 @@ 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 = "0.8.4" +aes = { workspace = true } azalea-buf = { path = "../azalea-buf", version = "0.10.0" } -cfb8 = "0.8.1" -num-bigint = "^0.4.6" -rand = { version = "^0.8.5", features = ["getrandom"] } -rsa = { version = "0.9.6", features = ["sha2"] } -rsa_public_encrypt_pkcs1 = "0.4.0" -sha-1 = "^0.10.1" -sha2 = "0.10.8" -uuid = "^1.9.1" +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 = { version = "^0.5.1", features = ["html_reports"] } +criterion = { workspace = true, features = ["html_reports"] } [[bench]] harness = false |
