TOTP-Generator/Cargo.lock

419 lines
11 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
2023-04-28 00:26:17 +00:00
[[package]]
name = "anstream"
2024-03-16 00:09:59 +00:00
version = "0.6.13"
2023-04-28 00:26:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 00:09:59 +00:00
checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
2023-04-28 00:26:17 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
2024-03-16 00:09:59 +00:00
"windows-sys 0.48.0",
2023-04-28 00:26:17 +00:00
]
[[package]]
name = "anstyle-wincon"
2024-03-16 00:09:59 +00:00
version = "3.0.2"
2023-04-28 00:26:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 00:09:59 +00:00
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
2023-04-28 00:26:17 +00:00
dependencies = [
"anstyle",
2024-03-16 00:09:59 +00:00
"windows-sys 0.52.0",
2023-04-28 00:26:17 +00:00
]
2022-03-21 11:08:58 +00:00
[[package]]
name = "base32"
version = "0.5.0"
2022-03-21 11:08:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1ce0365f4d5fb6646220bb52fe547afd51796d90f914d4063cb0b032ebee088"
2022-03-21 11:08:58 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "block-buffer"
version = "0.10.4"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
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"
2024-06-29 00:18:35 +00:00
version = "4.5.8"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-29 00:18:35 +00:00
checksum = "84b3edb18336f4df585bc9aa31dd99c036dfa5dc5e9a2939a722a188f3a8970d"
2022-03-21 08:40:34 +00:00
dependencies = [
2023-04-28 00:26:17 +00:00
"clap_builder",
2022-03-21 08:52:26 +00:00
"clap_derive",
2023-04-28 00:26:17 +00:00
]
[[package]]
name = "clap_builder"
2024-06-29 00:18:35 +00:00
version = "4.5.8"
2023-04-28 00:26:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-29 00:18:35 +00:00
checksum = "c1c09dd5ada6c6c78075d6fd0da3f90d8080651e2d6cc8eb2f1aaa4034ced708"
2023-04-28 00:26:17 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2022-03-21 08:40:34 +00:00
"strsim",
]
2022-03-21 08:52:26 +00:00
[[package]]
name = "clap_derive"
2024-06-29 00:18:35 +00:00
version = "4.5.8"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-29 00:18:35 +00:00
checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
2022-03-21 08:52:26 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
2022-03-21 08:52:26 +00:00
]
2022-04-18 00:17:15 +00:00
[[package]]
name = "clap_lex"
2024-03-16 00:09:59 +00:00
version = "0.7.0"
2022-04-18 00:17:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 00:09:59 +00:00
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
2023-04-28 00:26:17 +00:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-04-18 00:17:15 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
name = "cpufeatures"
version = "0.2.13"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
2022-03-21 09:06:32 +00: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 = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
2022-03-21 09:06:32 +00:00
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "heck"
version = "0.5.0"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2022-03-21 08:40:34 +00:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
2022-03-21 09:06:32 +00:00
[[package]]
name = "libc"
version = "0.2.155"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2022-03-21 09:06:32 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
name = "proc-macro2"
2024-03-16 00:09:59 +00:00
version = "1.0.79"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 00:09:59 +00:00
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
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 = "sha1"
version = "0.10.6"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2022-03-21 08:40:34 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
2022-03-21 08:40:34 +00:00
]
[[package]]
name = "sha2"
version = "0.10.8"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2022-03-21 08:40:34 +00:00
[[package]]
name = "strsim"
2024-03-16 00:09:59 +00:00
version = "0.11.0"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 00:09:59 +00:00
checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
2022-03-21 08:40:34 +00:00
[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2022-03-21 08:40:34 +00:00
[[package]]
2023-04-28 00:26:17 +00:00
name = "syn"
version = "2.0.15"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-28 00:26:17 +00:00
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
2022-03-21 08:40:34 +00:00
dependencies = [
2023-04-28 00:26:17 +00:00
"proc-macro2",
"quote",
"unicode-ident",
2022-03-21 08:40:34 +00:00
]
[[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.6.1"
2022-03-21 09:06:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1329a48ffb99a7257f792c0db25d989248c552dc15073dd24ab70752f74c5b1f"
2022-03-21 09:06:32 +00:00
dependencies = [
"hmac",
"sha1",
"sha2",
2022-03-21 08:40:34 +00:00
]
2022-03-21 08:52:26 +00:00
[[package]]
name = "typenum"
version = "1.17.0"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2022-03-21 08:52:26 +00:00
2022-03-21 08:40:34 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.8"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-03-21 08:40:34 +00:00
2022-03-21 08:52:26 +00:00
[[package]]
2023-04-28 00:26:17 +00:00
name = "utf8parse"
version = "0.2.1"
2022-03-21 08:52:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-28 00:26:17 +00:00
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-03-21 08:52:26 +00:00
2022-03-21 09:06:32 +00:00
[[package]]
name = "version_check"
version = "0.9.5"
2022-03-21 08:40:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2024-03-16 00:09:59 +00:00
"windows-targets 0.48.0",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.4",
2023-04-28 00:26:17 +00:00
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
2024-03-16 00:09:59 +00:00
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
[[package]]
name = "windows-targets"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
dependencies = [
"windows_aarch64_gnullvm 0.52.4",
"windows_aarch64_msvc 0.52.4",
"windows_i686_gnu 0.52.4",
"windows_i686_msvc 0.52.4",
"windows_x86_64_gnu 0.52.4",
"windows_x86_64_gnullvm 0.52.4",
"windows_x86_64_msvc 0.52.4",
]
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
2023-04-28 00:26:17 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2024-03-16 00:09:59 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"