diff options
| author | Ralf Jung <post@ralfj.de> | 2023-10-21 08:41:45 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-10-21 08:41:45 +0200 |
| commit | 49e8acbfe953f0c5209916830e02dcc7e005cf68 (patch) | |
| tree | 7cf9b30ea414b3a82e51bb5b6af04ba95ad0f6cb | |
| parent | 49056df3875ba831af15b243c452908616a01782 (diff) | |
| download | rust-49e8acbfe953f0c5209916830e02dcc7e005cf68.tar.gz rust-49e8acbfe953f0c5209916830e02dcc7e005cf68.zip | |
update lockfile
| -rw-r--r-- | Cargo.lock | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index a1a02c65d94..232c9c9441f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,6 +25,17 @@ dependencies = [ ] [[package]] +name = "aes" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[package]] name = "ahash" version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -471,6 +482,16 @@ dependencies = [ ] [[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] + +[[package]] name = "clap" version = "4.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1985,6 +2006,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] +name = "inout" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +dependencies = [ + "generic-array", +] + +[[package]] name = "installer" version = "0.0.0" dependencies = [ @@ -2465,6 +2495,7 @@ dependencies = [ name = "miri" version = "0.1.0" dependencies = [ + "aes", "colored", "ctrlc", "env_logger 0.10.0", |
