rsa/Cargo.lock

838 lines
22 KiB
Plaintext
Raw Normal View History

2023-03-01 21:54:18 -07:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aes"
2024-11-01 12:51:13 +02:00
version = "0.8.4"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
2023-03-01 21:54:18 -07:00
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
[[package]]
name = "autocfg"
2024-11-01 12:51:13 +02:00
version = "1.4.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2023-03-01 21:54:18 -07:00
[[package]]
name = "base64ct"
version = "1.6.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2023-03-01 21:54:18 -07:00
[[package]]
name = "bit-set"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
[[package]]
name = "bitflags"
2024-11-01 12:51:13 +02:00
version = "2.6.0"
2023-08-19 18:08:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2023-08-19 18:08:54 +03:00
2023-03-01 21:54:18 -07:00
[[package]]
name = "block-buffer"
2023-08-19 18:08:54 +03:00
version = "0.10.4"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2023-03-01 21:54:18 -07:00
dependencies = [
"generic-array",
]
[[package]]
name = "block-padding"
2023-08-19 18:08:54 +03:00
version = "0.3.3"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
2023-03-01 21:54:18 -07:00
dependencies = [
"generic-array",
]
[[package]]
name = "byteorder"
version = "1.5.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2023-03-01 21:54:18 -07:00
[[package]]
name = "cbc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
dependencies = [
"cipher",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cipher"
2023-08-19 18:08:54 +03:00
version = "0.4.4"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
2023-03-01 21:54:18 -07:00
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "const-oid"
2024-11-01 12:51:13 +02:00
version = "0.9.6"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
2023-03-01 21:54:18 -07:00
[[package]]
name = "cpufeatures"
2024-11-01 12:51:13 +02:00
version = "0.2.14"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
2023-03-01 21:54:18 -07:00
dependencies = [
"libc",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "der"
2024-11-01 12:51:13 +02:00
version = "0.7.9"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
2023-03-01 21:54:18 -07:00
dependencies = [
"const-oid",
"pem-rfc7468",
"zeroize",
]
[[package]]
name = "digest"
2023-08-19 18:08:54 +03:00
version = "0.10.7"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2023-03-01 21:54:18 -07:00
dependencies = [
"block-buffer",
"const-oid",
"crypto-common",
"subtle",
]
[[package]]
name = "errno"
2024-11-01 12:51:13 +02:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
dependencies = [
"libc",
2024-11-01 12:51:13 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "fastrand"
2024-11-01 12:51:13 +02:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-03-01 21:54:18 -07:00
[[package]]
name = "generic-array"
2023-08-19 18:08:54 +03:00
version = "0.14.7"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-03-01 21:54:18 -07:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-11-01 12:51:13 +02:00
version = "0.2.12"
source = "git+https://git.alnyan.me/yggdrasil/getrandom.git?branch=alnyan/yggdrasil#0c156352b5ebf7a3b137b460ee5536c2c3a1e835"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "getrandom"
version = "0.2.15"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-03-01 21:54:18 -07:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "hex-literal"
version = "0.4.1"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
2023-03-01 21:54:18 -07:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"block-padding",
"generic-array",
]
[[package]]
name = "keccak"
2024-11-01 12:51:13 +02:00
version = "0.1.5"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
2023-03-01 21:54:18 -07:00
dependencies = [
"cpufeatures",
]
[[package]]
name = "lazy_static"
2024-11-01 12:51:13 +02:00
version = "1.5.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2023-03-01 21:54:18 -07:00
dependencies = [
"spin",
]
[[package]]
name = "libc"
2024-11-01 12:51:13 +02:00
version = "0.2.161"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
2023-03-01 21:54:18 -07:00
[[package]]
name = "libm"
2024-11-01 12:51:13 +02:00
version = "0.2.11"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
2023-03-01 21:54:18 -07:00
[[package]]
name = "linux-raw-sys"
2024-11-01 12:51:13 +02:00
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2023-03-01 21:54:18 -07:00
[[package]]
name = "num-bigint-dig"
2024-11-01 12:51:13 +02:00
version = "0.8.2"
source = "git+https://git.alnyan.me/yggdrasil/num-bigint-dig.git?branch=alnyan/yggdrasil-0.8.2#e0ff3fcf8e9f5612be8ede9df7458bd762ac525f"
2023-03-01 21:54:18 -07:00
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
2024-11-01 12:51:13 +02:00
"rand 0.8.5 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
2023-03-01 21:54:18 -07:00
"serde",
"smallvec",
"zeroize",
]
[[package]]
name = "num-integer"
2024-11-01 12:51:13 +02:00
version = "0.1.46"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2023-03-01 21:54:18 -07:00
dependencies = [
"num-traits",
]
[[package]]
name = "num-iter"
2024-11-01 12:51:13 +02:00
version = "0.1.45"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2023-03-01 21:54:18 -07:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2024-11-01 12:51:13 +02:00
version = "0.2.19"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2023-03-01 21:54:18 -07:00
dependencies = [
"autocfg",
"libm",
]
2024-11-01 12:51:13 +02:00
[[package]]
name = "once_cell"
version = "1.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2023-03-01 21:54:18 -07:00
[[package]]
name = "pbkdf2"
2023-08-19 18:08:54 +03:00
version = "0.12.2"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2023-03-01 21:54:18 -07:00
dependencies = [
"digest",
"hmac",
2023-03-01 21:54:18 -07:00
]
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2023-03-01 21:54:18 -07:00
dependencies = [
"base64ct",
]
[[package]]
name = "pkcs1"
version = "0.7.5"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2023-03-01 21:54:18 -07:00
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs5"
version = "0.7.1"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
2023-03-01 21:54:18 -07:00
dependencies = [
"aes",
"cbc",
"der",
"pbkdf2",
"scrypt",
"sha2",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2023-03-01 21:54:18 -07:00
dependencies = [
"der",
"pkcs5",
2024-11-01 12:51:13 +02:00
"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
2023-03-01 21:54:18 -07:00
"spki",
]
[[package]]
name = "ppv-lite86"
2024-11-01 12:51:13 +02:00
version = "0.2.20"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2023-03-01 21:54:18 -07:00
[[package]]
name = "proc-macro2"
2024-11-01 12:51:13 +02:00
version = "1.0.89"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
2023-03-01 21:54:18 -07:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "proptest"
2024-11-01 12:51:13 +02:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d"
dependencies = [
"bit-set",
"bit-vec",
2024-11-01 12:51:13 +02:00
"bitflags",
"lazy_static",
"num-traits",
2024-11-01 12:51:13 +02:00
"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_xorshift",
"regex-syntax",
"rusty-fork",
"tempfile",
"unarray",
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2023-03-01 21:54:18 -07:00
[[package]]
name = "quote"
2024-11-01 12:51:13 +02:00
version = "1.0.37"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2023-03-01 21:54:18 -07:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2024-11-01 12:51:13 +02:00
"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4#27d8b41f68e239bf5b2e5079554f1b861966672f"
dependencies = [
"libc",
"rand_chacha 0.3.1 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
"rand_core 0.6.4 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
2023-03-01 21:54:18 -07:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2024-11-01 12:51:13 +02:00
"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4#27d8b41f68e239bf5b2e5079554f1b861966672f"
dependencies = [
"ppv-lite86",
"rand_core 0.6.4 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
2023-03-01 21:54:18 -07:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2024-11-01 12:51:13 +02:00
"getrandom 0.2.15",
2023-03-01 21:54:18 -07:00
]
[[package]]
2024-11-01 12:51:13 +02:00
name = "rand_core"
version = "0.6.4"
source = "git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4#27d8b41f68e239bf5b2e5079554f1b861966672f"
2023-03-01 21:54:18 -07:00
dependencies = [
2024-11-01 12:51:13 +02:00
"getrandom 0.2.12",
2023-03-01 21:54:18 -07:00
]
[[package]]
2024-11-01 12:51:13 +02:00
name = "rand_xorshift"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
dependencies = [
2024-11-01 12:51:13 +02:00
"rand_core 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "regex-syntax"
2024-11-01 12:51:13 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2023-03-01 21:54:18 -07:00
[[package]]
name = "rsa"
version = "0.9.6"
2023-03-01 21:54:18 -07:00
dependencies = [
"base64ct",
"const-oid",
2023-03-01 21:54:18 -07:00
"digest",
"hex-literal",
"num-bigint-dig",
"num-integer",
"num-traits",
"pkcs1",
"pkcs8",
"proptest",
2024-11-01 12:51:13 +02:00
"rand 0.8.5 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_core 0.6.4 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
2023-03-01 21:54:18 -07:00
"rand_xorshift",
"serde",
"serde_test",
"sha1",
"sha2",
"sha3",
"signature",
"spki",
2023-03-01 21:54:18 -07:00
"subtle",
"zeroize",
]
[[package]]
name = "rustix"
2024-11-01 12:51:13 +02:00
version = "0.38.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
dependencies = [
2024-11-01 12:51:13 +02:00
"bitflags",
"errno",
"libc",
"linux-raw-sys",
2024-11-01 12:51:13 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "rusty-fork"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
dependencies = [
"fnv",
"quick-error",
"tempfile",
"wait-timeout",
]
2023-03-01 21:54:18 -07:00
[[package]]
name = "salsa20"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
dependencies = [
"cipher",
]
[[package]]
name = "scrypt"
version = "0.11.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
2023-03-01 21:54:18 -07:00
dependencies = [
"pbkdf2",
"salsa20",
"sha2",
]
[[package]]
name = "serde"
2024-11-01 12:51:13 +02:00
version = "1.0.214"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
2023-03-01 21:54:18 -07:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-11-01 12:51:13 +02:00
version = "1.0.214"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
2023-03-01 21:54:18 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_test"
2024-11-01 12:51:13 +02:00
version = "1.0.177"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "7f901ee573cab6b3060453d2d5f0bae4e6d628c23c0a962ff9b5f1d7c8d4f1ed"
2023-03-01 21:54:18 -07:00
dependencies = [
"serde",
]
[[package]]
name = "sha1"
version = "0.10.6"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2023-03-01 21:54:18 -07:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "sha2"
version = "0.10.8"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2023-03-01 21:54:18 -07:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "sha3"
2023-08-19 18:08:54 +03:00
version = "0.10.8"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 18:08:54 +03:00
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
2023-03-01 21:54:18 -07:00
dependencies = [
"digest",
"keccak",
]
[[package]]
name = "signature"
version = "2.2.0"
2024-11-01 12:51:13 +02:00
source = "git+https://git.alnyan.me/yggdrasil/rustcrypto-traits.git?branch=alnyan/yggdrasil-2.2.0#ac3771039858e20b812450ff7b6bf67e29436208"
2023-03-01 21:54:18 -07:00
dependencies = [
"digest",
2024-11-01 12:51:13 +02:00
"rand_core 0.6.4 (git+https://git.alnyan.me/yggdrasil/rand.git?branch=alnyan/yggdrasil-rng_core-0.6.4)",
2023-03-01 21:54:18 -07:00
]
[[package]]
name = "smallvec"
2024-11-01 12:51:13 +02:00
version = "1.13.2"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2023-03-01 21:54:18 -07:00
[[package]]
name = "spin"
2024-11-01 12:51:13 +02:00
version = "0.9.8"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2023-03-01 21:54:18 -07:00
[[package]]
name = "spki"
version = "0.7.3"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2023-03-01 21:54:18 -07:00
dependencies = [
"base64ct",
"der",
]
[[package]]
name = "subtle"
2024-11-01 12:51:13 +02:00
version = "2.6.1"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2023-03-01 21:54:18 -07:00
[[package]]
name = "syn"
2024-11-01 12:51:13 +02:00
version = "2.0.86"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "e89275301d38033efb81a6e60e3497e734dfcc62571f2854bf4b16690398824c"
2023-03-01 21:54:18 -07:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "tempfile"
2024-11-01 12:51:13 +02:00
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
dependencies = [
"cfg-if",
"fastrand",
2024-11-01 12:51:13 +02:00
"once_cell",
"rustix",
2024-11-01 12:51:13 +02:00
"windows-sys 0.59.0",
]
2023-03-01 21:54:18 -07:00
[[package]]
name = "typenum"
version = "1.17.0"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-03-01 21:54:18 -07:00
[[package]]
name = "unarray"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2023-03-01 21:54:18 -07:00
[[package]]
name = "unicode-ident"
2024-11-01 12:51:13 +02:00
version = "1.0.13"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
2023-03-01 21:54:18 -07:00
[[package]]
name = "version_check"
2024-11-01 12:51:13 +02:00
version = "0.9.5"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2023-03-01 21:54:18 -07:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2023-03-01 21:54:18 -07:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "windows-sys"
2024-11-01 12:51:13 +02:00
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
2023-08-19 18:08:54 +03:00
"windows-targets",
]
[[package]]
name = "windows-targets"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
2023-08-19 18:08:54 +03:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-11-01 12:51:13 +02:00
"windows_i686_gnullvm",
2023-08-19 18:08:54 +03:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_msvc"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_i686_gnu"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_msvc"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_x86_64_gnu"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnullvm"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_msvc"
2024-11-01 12:51:13 +02:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zerocopy"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"byteorder",
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2023-03-01 21:54:18 -07:00
[[package]]
name = "zeroize"
2024-11-01 12:51:13 +02:00
version = "1.8.1"
2023-03-01 21:54:18 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-01 12:51:13 +02:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"