diff options
| author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-05-10 16:47:08 +0200 |
|---|---|---|
| committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-05-10 16:47:08 +0200 |
| commit | 3d452c73c1d53099c8dc2d0e34634bf52262347d (patch) | |
| tree | 126287a900f7e9c9df3ed65c0aa17bff8c2fb38f | |
| parent | c689b47d44e8fdf03b25284014df139e990557f3 (diff) | |
| download | azalea-drasl-3d452c73c1d53099c8dc2d0e34634bf52262347d.tar.xz | |
add rpassword dependency for azalea-auth
| -rw-r--r-- | Cargo.lock | 31 | ||||
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | azalea-auth/Cargo.toml | 1 |
3 files changed, 33 insertions, 0 deletions
@@ -285,6 +285,7 @@ dependencies = [ "env_logger", "indexmap", "reqwest", + "rpassword", "rsa", "serde", "serde_json", @@ -3087,6 +3088,17 @@ dependencies = [ ] [[package]] +name = "rpassword" +version = "7.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ac5b223d9738ef56e0b98305410be40fa0941bf6036c56f1506751e43552d64" +dependencies = [ + "libc", + "rtoolbox", + "windows-sys 0.61.2", +] + +[[package]] name = "rsa" version = "0.10.0-rc.18" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3117,6 +3129,16 @@ dependencies = [ ] [[package]] +name = "rtoolbox" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + +[[package]] name = "rustc-demangle" version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4261,6 +4283,15 @@ dependencies = [ [[package]] name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" @@ -69,6 +69,7 @@ rand = "0.10.1" rand_core = "0.10.1" regex = "1.12.3" reqwest = { version = "0.13.3", default-features = false } +rpassword = "7.5.2" rsa = "0.10.0-rc.18" rsa_public_encrypt_pkcs1 = "0.4.0" rustc-hash = "2.1.2" diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml index ca7ddecb..0cd6e3dc 100644 --- a/azalea-auth/Cargo.toml +++ b/azalea-auth/Cargo.toml @@ -17,6 +17,7 @@ reqwest = { workspace = true, optional = true, default-features = false, feature "rustls", "form", ] } +rpassword.workspace = true rsa.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true |
