TOTP-Generator/Cargo.lock

475 lines
12 KiB
Plaintext
Raw Normal View History

2022-03-21 08:40:34 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2022-03-21 11:08:58 +00:00
[[package]]
name = "base32"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa"
2022-03-21 08:40:34 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1"
2022-03-21 09:06:32 +00:00
[[package]]
name = "bumpalo"
version = "3.12.0"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
2022-03-21 09:06:32 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "cc"
version = "1.0.79"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-03-21 08:40:34 +00:00
2022-03-21 09:06:32 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-03-21 08:40:34 +00:00
[[package]]
name = "clap"
version = "4.1.11"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098"
2022-03-21 08:40:34 +00:00
dependencies = [
"bitflags 2.0.2",
2022-03-21 08:52:26 +00:00
"clap_derive",
2022-04-18 00:17:15 +00:00
"clap_lex",
"is-terminal",
2022-09-01 00:27:07 +00:00
"once_cell",
2022-03-21 08:40:34 +00:00
"strsim",
"termcolor",
]
2022-03-21 08:52:26 +00:00
[[package]]
name = "clap_derive"
version = "4.1.9"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644"
2022-03-21 08:52:26 +00:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2022-04-18 00:17:15 +00:00
[[package]]
name = "clap_lex"
version = "0.3.3"
2022-04-18 00:17:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "033f6b7a4acb1f358c742aaca805c939ee73b4c6209ae4318ec7aca81c42e646"
2022-04-18 00:17:15 +00:00
dependencies = [
"os_str_bytes",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-03-21 08:40:34 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
name = "heck"
version = "0.4.1"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-03-21 08:52:26 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
name = "io-lifetimes"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dd6da19f25979c7270e70fa95ab371ec3b701cd0eefc47667a09785b3c59155"
2022-03-21 08:40:34 +00:00
dependencies = [
"hermit-abi",
2022-03-21 08:40:34 +00:00
"libc",
"windows-sys",
2022-03-21 08:40:34 +00:00
]
[[package]]
name = "is-terminal"
version = "0.4.5"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e"
2022-03-21 08:40:34 +00:00
dependencies = [
"hermit-abi",
"io-lifetimes",
"rustix",
"windows-sys",
2022-03-21 08:40:34 +00:00
]
2022-03-21 09:06:32 +00:00
[[package]]
name = "js-sys"
version = "0.3.61"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
2022-03-21 09:06:32 +00:00
dependencies = [
"wasm-bindgen",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "libc"
version = "0.2.140"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
2022-03-21 08:40:34 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.1.4"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-03-21 08:40:34 +00:00
[[package]]
2022-03-21 09:06:32 +00:00
name = "log"
version = "0.4.17"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2022-03-21 08:40:34 +00:00
dependencies = [
2022-03-21 09:06:32 +00:00
"cfg-if",
2022-03-21 08:40:34 +00:00
]
2022-03-21 09:06:32 +00:00
[[package]]
name = "once_cell"
version = "1.17.1"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-03-21 09:06:32 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "os_str_bytes"
version = "6.5.0"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267"
2022-03-21 08:40:34 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
version = "1.0.52"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224"
2022-03-21 08:52:26 +00:00
dependencies = [
"unicode-ident",
2022-03-21 08:52:26 +00:00
]
[[package]]
name = "quote"
version = "1.0.26"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2022-03-21 08:52:26 +00:00
dependencies = [
"proc-macro2",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "ring"
2022-03-21 09:06:32 +00:00
version = "0.16.20"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-21 09:06:32 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2022-03-21 08:40:34 +00:00
dependencies = [
"cc",
"libc",
2022-03-21 09:06:32 +00:00
"once_cell",
2022-03-21 08:40:34 +00:00
"spin",
"untrusted",
2022-03-21 09:06:32 +00:00
"web-sys",
2022-03-21 08:40:34 +00:00
"winapi",
]
[[package]]
name = "rustix"
version = "0.36.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fe885c3a125aa45213b68cc1472a49880cb5923dc23f522ad2791b882228778"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-03-21 08:52:26 +00:00
[[package]]
name = "syn"
version = "1.0.109"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-03-21 08:52:26 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2022-03-21 08:52:26 +00:00
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "termcolor"
version = "1.2.0"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2022-03-21 08:40:34 +00:00
dependencies = [
"winapi-util",
]
[[package]]
name = "totp_generator"
version = "0.1.0"
dependencies = [
2022-03-21 11:08:58 +00:00
"base32",
2022-03-21 08:40:34 +00:00
"clap",
2022-03-21 09:06:32 +00:00
"totp_rfc6238",
]
[[package]]
name = "totp_rfc6238"
version = "0.5.1"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f9ece5c7063519b792acf7a8aeb930ac620e4d22e048894ddd38ba2f327d047"
2022-03-21 09:06:32 +00:00
dependencies = [
"ring",
2022-03-21 08:40:34 +00:00
]
2022-03-21 08:52:26 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.8"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-03-21 08:52:26 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "untrusted"
2022-03-21 09:06:32 +00:00
version = "0.7.1"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-21 09:06:32 +00:00
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2022-03-21 08:40:34 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-03-21 09:06:32 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.84"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
2022-03-21 09:06:32 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.84"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
2022-03-21 09:06:32 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
2022-03-21 09:06:32 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.84"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
2022-03-21 09:06:32 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.84"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
2022-03-21 09:06:32 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.84"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
2022-03-21 09:06:32 +00:00
[[package]]
name = "web-sys"
version = "0.3.61"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
2022-03-21 09:06:32 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"