argon2-creds/Cargo.lock

812 lines
21 KiB
Text
Raw Normal View History

2022-02-09 19:40:33 +05:30
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "ammonia"
2022-04-11 17:33:16 +05:30
version = "3.2.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "d5ed2509ee88cc023cccee37a6fab35826830fe8b748b3869790e7720c2c4a74"
2022-02-09 19:40:33 +05:30
dependencies = [
"html5ever",
"maplit",
2022-04-11 17:33:16 +05:30
"once_cell",
2022-02-09 19:40:33 +05:30
"tendril",
"url",
]
[[package]]
name = "argon2-creds"
2022-04-11 17:33:16 +05:30
version = "0.2.2"
2022-02-09 19:40:33 +05:30
dependencies = [
"ammonia",
"derive_builder",
"derive_more",
"lazy_static",
2022-04-11 17:33:16 +05:30
"rand",
2022-02-09 19:40:33 +05:30
"regex",
"rust-argon2",
"unicode-normalization",
"validator",
]
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
2022-04-11 17:33:16 +05:30
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2022-02-09 19:40:33 +05:30
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "blake2b_simd"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "crossbeam-utils"
2022-04-11 17:33:16 +05:30
version = "0.8.8"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2022-02-09 19:40:33 +05:30
dependencies = [
"cfg-if",
"lazy_static",
]
[[package]]
name = "darling"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
dependencies = [
"darling_core",
"quote",
"syn",
]
[[package]]
name = "derive_builder"
2022-04-11 17:33:16 +05:30
version = "0.11.1"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "11d918e7dabe374a51dae0f29d818fece3b218b8b4eabec3bc4d42c537e7ed8f"
2022-02-09 19:40:33 +05:30
dependencies = [
"derive_builder_macro",
]
[[package]]
name = "derive_builder_core"
2022-04-11 17:33:16 +05:30
version = "0.11.1"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "f712c2d4e52d5fcae53584e461dcb92fb2202e144ebf83ab0ba4360d18b767c7"
2022-02-09 19:40:33 +05:30
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_macro"
2022-04-11 17:33:16 +05:30
version = "0.11.1"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "a8a2ac71b4a9a590dde6cee3ca4687aca5e7ce06f4ee297c5a959de5f1e42b2e"
2022-02-09 19:40:33 +05:30
dependencies = [
"derive_builder_core",
"syn",
]
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
"syn",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futf"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
dependencies = [
"mac",
"new_debug_unreachable",
]
[[package]]
name = "getrandom"
2022-04-11 17:33:16 +05:30
version = "0.2.6"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
2022-02-09 19:40:33 +05:30
dependencies = [
"cfg-if",
"libc",
2022-04-11 17:33:16 +05:30
"wasi",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "html5ever"
2022-04-11 17:33:16 +05:30
version = "0.26.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
2022-02-09 19:40:33 +05:30
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "if_chain"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-04-11 17:33:16 +05:30
version = "0.2.122"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "ec647867e2bf0772e28c8bcde4f0d19a9216916e890543b5a03ed8ef27b8f259"
2022-02-09 19:40:33 +05:30
[[package]]
name = "lock_api"
2022-04-11 17:33:16 +05:30
version = "0.4.7"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
2022-02-09 19:40:33 +05:30
dependencies = [
2022-04-11 17:33:16 +05:30
"autocfg",
2022-02-09 19:40:33 +05:30
"scopeguard",
]
[[package]]
name = "log"
2022-04-11 17:33:16 +05:30
version = "0.4.16"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
2022-02-09 19:40:33 +05:30
dependencies = [
"cfg-if",
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "markup5ever"
2022-04-11 17:33:16 +05:30
version = "0.11.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
2022-02-09 19:40:33 +05:30
dependencies = [
"log",
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "memchr"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2022-04-11 17:33:16 +05:30
[[package]]
name = "once_cell"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2022-02-09 19:40:33 +05:30
[[package]]
name = "parking_lot"
2022-04-11 17:33:16 +05:30
version = "0.12.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
2022-02-09 19:40:33 +05:30
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-04-11 17:33:16 +05:30
version = "0.9.2"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "995f667a6c822200b0433ac218e05582f0e2efa1b922a3fd2fbaadc5f87bab37"
2022-02-09 19:40:33 +05:30
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2022-04-11 17:33:16 +05:30
"windows-sys",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "phf"
2022-04-11 17:33:16 +05:30
version = "0.10.1"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2022-02-09 19:40:33 +05:30
dependencies = [
2022-04-11 17:33:16 +05:30
"phf_shared",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "phf_codegen"
2022-04-11 17:33:16 +05:30
version = "0.10.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2022-02-09 19:40:33 +05:30
dependencies = [
"phf_generator",
2022-04-11 17:33:16 +05:30
"phf_shared",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "phf_generator"
2022-04-11 17:33:16 +05:30
version = "0.10.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2022-02-09 19:40:33 +05:30
dependencies = [
2022-04-11 17:33:16 +05:30
"phf_shared",
"rand",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
[[package]]
name = "ppv-lite86"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[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"
2022-04-11 17:33:16 +05:30
version = "1.0.37"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
2022-02-09 19:40:33 +05:30
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2022-04-11 17:33:16 +05:30
version = "1.0.18"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
2022-02-09 19:40:33 +05:30
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-04-11 17:33:16 +05:30
version = "0.8.5"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2022-02-09 19:40:33 +05:30
dependencies = [
"libc",
2022-04-11 17:33:16 +05:30
"rand_chacha",
"rand_core",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-04-11 17:33:16 +05:30
"rand_core",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
2022-04-11 17:33:16 +05:30
"getrandom",
2022-02-09 19:40:33 +05:30
]
[[package]]
name = "redox_syscall"
2022-04-11 17:33:16 +05:30
version = "0.2.13"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2022-02-09 19:40:33 +05:30
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
2022-04-11 17:33:16 +05:30
version = "1.5.5"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
2022-02-09 19:40:33 +05:30
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "rust-argon2"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b50162d19404029c1ceca6f6980fe40d45c8b369f6f44446fa14bb39573b5bb9"
dependencies = [
"base64",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "ryu"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "semver"
2022-04-11 17:33:16 +05:30
version = "1.0.7"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
2022-02-09 19:40:33 +05:30
[[package]]
name = "serde"
version = "1.0.136"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
[[package]]
name = "serde_derive"
version = "1.0.136"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-04-11 17:33:16 +05:30
version = "1.0.79"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
2022-02-09 19:40:33 +05:30
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "siphasher"
2022-04-11 17:33:16 +05:30
version = "0.3.10"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2022-02-09 19:40:33 +05:30
[[package]]
name = "smallvec"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "string_cache"
2022-04-11 17:33:16 +05:30
version = "0.8.4"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2022-02-09 19:40:33 +05:30
dependencies = [
"new_debug_unreachable",
2022-04-11 17:33:16 +05:30
"once_cell",
2022-02-09 19:40:33 +05:30
"parking_lot",
2022-04-11 17:33:16 +05:30
"phf_shared",
2022-02-09 19:40:33 +05:30
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
2022-04-11 17:33:16 +05:30
version = "0.5.2"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2022-02-09 19:40:33 +05:30
dependencies = [
"phf_generator",
2022-04-11 17:33:16 +05:30
"phf_shared",
2022-02-09 19:40:33 +05:30
"proc-macro2",
"quote",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2022-04-11 17:33:16 +05:30
version = "1.0.91"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "b683b2b825c8eef438b77c36a06dc262294da3d5a5813fac20da149241dcd44d"
2022-02-09 19:40:33 +05:30
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tendril"
2022-04-11 17:33:16 +05:30
version = "0.4.3"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2022-02-09 19:40:33 +05:30
dependencies = [
"futf",
"mac",
"utf-8",
]
[[package]]
name = "tinyvec"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "unicode-bidi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
[[package]]
name = "unicode-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-xid"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "validator"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0f08911ab0fee2c5009580f04615fa868898ee57de10692a45da0c3bcc3e5e"
dependencies = [
"idna",
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
"validator_derive",
"validator_types",
]
[[package]]
name = "validator_derive"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d85135714dba11a1bd0b3eb1744169266f1a38977bf4e3ff5e2e1acb8c2b7eee"
dependencies = [
"if_chain",
"lazy_static",
"proc-macro-error",
"proc-macro2",
"quote",
"regex",
"syn",
"validator_types",
]
[[package]]
name = "validator_types"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
dependencies = [
"proc-macro2",
"syn",
]
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
2022-04-11 17:33:16 +05:30
name = "windows-sys"
version = "0.34.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825"
2022-02-09 19:40:33 +05:30
dependencies = [
2022-04-11 17:33:16 +05:30
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
2022-02-09 19:40:33 +05:30
]
[[package]]
2022-04-11 17:33:16 +05:30
name = "windows_aarch64_msvc"
version = "0.34.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
2022-02-09 19:40:33 +05:30
[[package]]
2022-04-11 17:33:16 +05:30
name = "windows_i686_gnu"
version = "0.34.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
2022-02-09 19:40:33 +05:30
[[package]]
2022-04-11 17:33:16 +05:30
name = "windows_i686_msvc"
version = "0.34.0"
2022-02-09 19:40:33 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 17:33:16 +05:30
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
[[package]]
name = "windows_x86_64_gnu"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
[[package]]
name = "windows_x86_64_msvc"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"