| # This file is automatically @generated by Cargo. |
| # It is not intended for manual editing. |
| version = 3 |
| |
| [[package]] |
| name = "adler32" |
| version = "1.0.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" |
| |
| [[package]] |
| name = "aead" |
| version = "0.4.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" |
| dependencies = [ |
| "generic-array 0.14.5", |
| "rand_core 0.6.3", |
| ] |
| |
| [[package]] |
| name = "aes" |
| version = "0.7.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "cipher", |
| "cpufeatures", |
| "opaque-debug", |
| ] |
| |
| [[package]] |
| name = "aes-gcm" |
| version = "0.9.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6" |
| dependencies = [ |
| "aead", |
| "aes", |
| "cipher", |
| "ctr", |
| "ghash", |
| "subtle", |
| ] |
| |
| [[package]] |
| name = "aes-gcm-siv" |
| version = "0.10.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "589c637f0e68c877bbd59a4599bbe849cac8e5f3e4b5a3ebae8f528cd218dcdc" |
| dependencies = [ |
| "aead", |
| "aes", |
| "cipher", |
| "ctr", |
| "polyval", |
| "subtle", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "aho-corasick" |
| version = "0.7.18" |
| dependencies = [ |
| "memchr", |
| ] |
| |
| [[package]] |
| name = "ansi_term" |
| version = "0.11.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" |
| dependencies = [ |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "anyhow" |
| version = "1.0.57" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" |
| |
| [[package]] |
| name = "arbitrary" |
| version = "1.0.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "510c76ecefdceada737ea728f4f9a84bd2e1ef29f1ba555e560940fe279954de" |
| dependencies = [ |
| "derive_arbitrary", |
| ] |
| |
| [[package]] |
| name = "argh" |
| version = "0.1.8" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a7e7e4aa7e40747e023c0761dafcb42333a9517575bbf1241747f68dd3177a62" |
| dependencies = [ |
| "argh_derive", |
| "argh_shared", |
| ] |
| |
| [[package]] |
| name = "argh_derive" |
| version = "0.1.8" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "69f2bd7ff6ed6414f4e5521bd509bae46454bbd513801767ced3f21a751ab4bc" |
| dependencies = [ |
| "argh_shared", |
| "heck 0.3.1", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "argh_shared" |
| version = "0.1.8" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "47253b98986dafc7a3e1cf3259194f1f47ac61abb57a57f46ec09e48d004ecda" |
| |
| [[package]] |
| name = "arrayref" |
| version = "0.3.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" |
| |
| [[package]] |
| name = "arrayvec" |
| version = "0.7.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "be4dc07131ffa69b8072d35f5007352af944213cde02545e2103680baed38fcd" |
| |
| [[package]] |
| name = "assert_matches" |
| version = "1.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" |
| |
| [[package]] |
| name = "async-broadcast" |
| version = "0.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "df4e44cf7a802b83be541c6de09471b6bb205acdb77bf8b89f4fadf4cd5b225d" |
| dependencies = [ |
| "easy-parallel", |
| "event-listener", |
| "futures-core", |
| ] |
| |
| [[package]] |
| name = "async-channel" |
| version = "1.6.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319" |
| dependencies = [ |
| "concurrent-queue", |
| "event-listener", |
| "futures-core", |
| ] |
| |
| [[package]] |
| name = "async-executor" |
| version = "1.4.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" |
| dependencies = [ |
| "async-task", |
| "concurrent-queue", |
| "fastrand", |
| "futures-lite", |
| "once_cell", |
| "slab", |
| ] |
| |
| [[package]] |
| name = "async-fs" |
| version = "1.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8b3ca4f8ff117c37c278a2f7415ce9be55560b846b5bc4412aaa5d29c1c3dae2" |
| dependencies = [ |
| "async-lock", |
| "blocking", |
| "futures-lite", |
| ] |
| |
| [[package]] |
| name = "async-io" |
| version = "1.4.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4bbfd5cf2794b1e908ea8457e6c45f8f8f1f6ec5f74617bf4662623f47503c3b" |
| dependencies = [ |
| "concurrent-queue", |
| "fastrand", |
| "futures-lite", |
| "libc", |
| "log", |
| "once_cell", |
| "parking", |
| "polling", |
| "slab", |
| "socket2", |
| "waker-fn", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "async-lock" |
| version = "2.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1996609732bde4a9988bc42125f55f2af5f3c36370e27c778d5191a4a1b63bfb" |
| dependencies = [ |
| "event-listener", |
| ] |
| |
| [[package]] |
| name = "async-net" |
| version = "1.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "69b0a74e7f70af3c8cf1aa539edbd044795706659ac52b78a71dc1a205ecefdf" |
| dependencies = [ |
| "async-io", |
| "blocking", |
| "fastrand", |
| "futures-lite", |
| ] |
| |
| [[package]] |
| name = "async-task" |
| version = "4.0.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" |
| |
| [[package]] |
| name = "async-trait" |
| version = "0.1.56" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "atomic-waker" |
| version = "1.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" |
| |
| [[package]] |
| name = "atty" |
| version = "0.2.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" |
| dependencies = [ |
| "libc", |
| "termion", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "autocfg" |
| version = "0.1.7" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" |
| |
| [[package]] |
| name = "autocfg" |
| version = "1.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
| |
| [[package]] |
| name = "backtrace" |
| version = "0.3.42" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b4b1549d804b6c73f4817df2ba073709e96e426f12987127c48e6745568c350b" |
| dependencies = [ |
| "backtrace-sys", |
| "cfg-if 0.1.10", |
| "libc", |
| "rustc-demangle", |
| ] |
| |
| [[package]] |
| name = "backtrace-sys" |
| version = "0.1.37" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "base16ct" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" |
| |
| [[package]] |
| name = "base64" |
| version = "0.9.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" |
| dependencies = [ |
| "byteorder", |
| "safemem", |
| ] |
| |
| [[package]] |
| name = "base64" |
| version = "0.13.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" |
| |
| [[package]] |
| name = "base64ct" |
| version = "1.0.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b" |
| |
| [[package]] |
| name = "bincode" |
| version = "1.3.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" |
| dependencies = [ |
| "serde", |
| ] |
| |
| [[package]] |
| name = "bit-set" |
| version = "0.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" |
| dependencies = [ |
| "bit-vec", |
| ] |
| |
| [[package]] |
| name = "bit-vec" |
| version = "0.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" |
| |
| [[package]] |
| name = "bitfield" |
| version = "0.13.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a260ed6b9f3ca16a4389390b1b1cd15a3bc0a9d3e63b1ef39f4978cec58a4e83" |
| |
| [[package]] |
| name = "bitflags" |
| version = "1.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
| |
| [[package]] |
| name = "block-buffer" |
| version = "0.3.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" |
| dependencies = [ |
| "arrayref", |
| "byte-tools", |
| ] |
| |
| [[package]] |
| name = "block-buffer" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" |
| dependencies = [ |
| "generic-array 0.14.5", |
| ] |
| |
| [[package]] |
| name = "blocking" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9" |
| dependencies = [ |
| "async-channel", |
| "async-task", |
| "atomic-waker", |
| "fastrand", |
| "futures-lite", |
| "once_cell", |
| ] |
| |
| [[package]] |
| name = "bstr" |
| version = "0.2.12" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2889e6d50f394968c8bf4240dc3f2a7eb4680844d27308f798229ac9d4725f41" |
| dependencies = [ |
| "lazy_static", |
| "memchr", |
| "regex-automata", |
| "serde", |
| ] |
| |
| [[package]] |
| name = "build_const" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" |
| |
| [[package]] |
| name = "bumpalo" |
| version = "3.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "12ae9db68ad7fac5fe51304d20f016c911539251075a214f8e663babefa35187" |
| |
| [[package]] |
| name = "byte-tools" |
| version = "0.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" |
| |
| [[package]] |
| name = "bytecount" |
| version = "0.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b0017894339f586ccb943b01b9555de56770c11cda818e7e3d8bd93f4ed7f46e" |
| |
| [[package]] |
| name = "byteorder" |
| version = "1.3.1" |
| |
| [[package]] |
| name = "bytes" |
| version = "1.0.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" |
| |
| [[package]] |
| name = "cache-padded" |
| version = "1.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" |
| |
| [[package]] |
| name = "camino" |
| version = "1.0.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "52d74260d9bf6944e2208aa46841b4b8f0d7ffc0849a06837b2f510337f86b2b" |
| dependencies = [ |
| "serde", |
| ] |
| |
| [[package]] |
| name = "cargo-platform" |
| version = "0.1.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" |
| dependencies = [ |
| "serde", |
| ] |
| |
| [[package]] |
| name = "cargo_metadata" |
| version = "0.14.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ba2ae6de944143141f6155a473a6b02f66c7c3f9f47316f802f80204ebfe6e12" |
| dependencies = [ |
| "camino", |
| "cargo-platform", |
| "semver 1.0.4", |
| "serde", |
| "serde_json", |
| ] |
| |
| [[package]] |
| name = "cassowary" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" |
| |
| [[package]] |
| name = "cast" |
| version = "0.2.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427" |
| |
| [[package]] |
| name = "cc" |
| version = "1.0.59" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "66120af515773fb005778dc07c261bd201ec8ce50bd6e7144c927753fe013381" |
| |
| [[package]] |
| name = "cfg-if" |
| version = "0.1.10" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" |
| |
| [[package]] |
| name = "cfg-if" |
| version = "1.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
| |
| [[package]] |
| name = "chacha20" |
| version = "0.8.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "01b72a433d0cf2aef113ba70f62634c56fddb0f244e6377185c56a7cadbd8f91" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "cipher", |
| "cpufeatures", |
| ] |
| |
| [[package]] |
| name = "chrono" |
| version = "0.4.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2" |
| dependencies = [ |
| "num-integer", |
| "num-traits", |
| "serde", |
| "time", |
| ] |
| |
| [[package]] |
| name = "chrono-english" |
| version = "0.1.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4233ee19352739cfdcb5d7c2085005b166f6170ef2845ed9eef27a8fa5f95206" |
| dependencies = [ |
| "chrono", |
| "scanlex", |
| "time", |
| ] |
| |
| [[package]] |
| name = "cipher" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" |
| dependencies = [ |
| "generic-array 0.14.5", |
| ] |
| |
| [[package]] |
| name = "clap" |
| version = "2.33.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" |
| dependencies = [ |
| "ansi_term", |
| "atty", |
| "bitflags", |
| "strsim 0.8.0", |
| "textwrap", |
| "unicode-width", |
| "vec_map", |
| ] |
| |
| [[package]] |
| name = "cloudabi" |
| version = "0.0.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" |
| dependencies = [ |
| "bitflags", |
| ] |
| |
| [[package]] |
| name = "combine" |
| version = "4.6.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b2b2f5d0ee456f3928812dfc8c6d9a1d592b98678f6d56db9b0cd2b7bc6c8db5" |
| dependencies = [ |
| "bytes", |
| "memchr", |
| ] |
| |
| [[package]] |
| name = "concurrent-queue" |
| version = "1.2.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3" |
| dependencies = [ |
| "cache-padded", |
| ] |
| |
| [[package]] |
| name = "const-oid" |
| version = "0.7.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" |
| |
| [[package]] |
| name = "core-foundation" |
| version = "0.9.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3" |
| dependencies = [ |
| "core-foundation-sys", |
| "libc", |
| ] |
| |
| [[package]] |
| name = "core-foundation-sys" |
| version = "0.8.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" |
| |
| [[package]] |
| name = "cpufeatures" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "crc" |
| version = "1.8.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" |
| dependencies = [ |
| "build_const", |
| ] |
| |
| [[package]] |
| name = "crc32fast" |
| version = "1.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| ] |
| |
| [[package]] |
| name = "criterion" |
| version = "0.2.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0363053954f3e679645fc443321ca128b7b950a6fe288cf5f9335cc22ee58394" |
| dependencies = [ |
| "atty", |
| "cast", |
| "clap", |
| "csv", |
| "itertools 0.8.0", |
| "lazy_static", |
| "libc", |
| "num-traits", |
| "rand_core 0.3.1", |
| "rand_os", |
| "rand_xoshiro", |
| "rayon", |
| "rayon-core", |
| "serde", |
| "serde_derive", |
| "serde_json", |
| "walkdir", |
| ] |
| |
| [[package]] |
| name = "crossbeam" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fd01a6eb3daaafa260f6fc94c3a6c36390abc2080e38e3e34ced87393fb77d80" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "crossbeam-channel", |
| "crossbeam-deque 0.8.1", |
| "crossbeam-epoch 0.9.4", |
| "crossbeam-queue 0.3.1", |
| "crossbeam-utils 0.8.4", |
| ] |
| |
| [[package]] |
| name = "crossbeam-channel" |
| version = "0.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "crossbeam-utils 0.8.4", |
| ] |
| |
| [[package]] |
| name = "crossbeam-deque" |
| version = "0.7.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" |
| dependencies = [ |
| "crossbeam-epoch 0.8.2", |
| "crossbeam-utils 0.7.2", |
| "maybe-uninit", |
| ] |
| |
| [[package]] |
| name = "crossbeam-deque" |
| version = "0.8.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "crossbeam-epoch 0.9.4", |
| "crossbeam-utils 0.8.4", |
| ] |
| |
| [[package]] |
| name = "crossbeam-epoch" |
| version = "0.8.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "cfg-if 0.1.10", |
| "crossbeam-utils 0.7.2", |
| "lazy_static", |
| "maybe-uninit", |
| "memoffset 0.5.3", |
| "scopeguard", |
| ] |
| |
| [[package]] |
| name = "crossbeam-epoch" |
| version = "0.9.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "52fb27eab85b17fbb9f6fd667089e07d6a2eb8743d02639ee7f6a7a7729c9c94" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "crossbeam-utils 0.8.4", |
| "lazy_static", |
| "memoffset 0.6.3", |
| "scopeguard", |
| ] |
| |
| [[package]] |
| name = "crossbeam-queue" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| "crossbeam-utils 0.7.2", |
| ] |
| |
| [[package]] |
| name = "crossbeam-queue" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0f6cb3c7f5b8e51bc3ebb73a2327ad4abdbd119dc13223f14f961d2f38486756" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "crossbeam-utils 0.8.4", |
| ] |
| |
| [[package]] |
| name = "crossbeam-utils" |
| version = "0.7.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "cfg-if 0.1.10", |
| "lazy_static", |
| ] |
| |
| [[package]] |
| name = "crossbeam-utils" |
| version = "0.8.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4feb231f0d4d6af81aed15928e58ecf5816aa62a2393e2c82f46973e92a9a278" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "cfg-if 1.0.0", |
| "lazy_static", |
| ] |
| |
| [[package]] |
| name = "crossterm" |
| version = "0.19.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c" |
| dependencies = [ |
| "bitflags", |
| "crossterm_winapi", |
| "lazy_static", |
| "libc", |
| "mio", |
| "parking_lot 0.11.1", |
| "signal-hook 0.1.17", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "crossterm_winapi" |
| version = "0.7.0" |
| |
| [[package]] |
| name = "crypto-bigint" |
| version = "0.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21" |
| dependencies = [ |
| "generic-array 0.14.5", |
| "rand_core 0.6.3", |
| "subtle", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "crypto-mac" |
| version = "0.11.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" |
| dependencies = [ |
| "generic-array 0.14.5", |
| "subtle", |
| ] |
| |
| [[package]] |
| name = "csv" |
| version = "1.1.3" |
| dependencies = [ |
| "bstr", |
| "csv-core", |
| "itoa 0.4.3", |
| "ryu", |
| "serde", |
| ] |
| |
| [[package]] |
| name = "csv-core" |
| version = "0.1.10" |
| dependencies = [ |
| "memchr", |
| ] |
| |
| [[package]] |
| name = "ctr" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" |
| dependencies = [ |
| "cipher", |
| ] |
| |
| [[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 1.0.39", |
| "quote 1.0.18", |
| "strsim 0.10.0", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "darling_macro" |
| version = "0.12.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" |
| dependencies = [ |
| "darling_core", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "dashmap" |
| version = "4.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "num_cpus", |
| ] |
| |
| [[package]] |
| name = "data-encoding" |
| version = "2.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" |
| |
| [[package]] |
| name = "deepsize" |
| version = "0.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1cdb987ec36f6bf7bfbea3f928b75590b736fc42af8e54d97592481351b2b96c" |
| dependencies = [ |
| "chrono", |
| "deepsize_derive", |
| "slab", |
| "smallvec 1.8.0", |
| ] |
| |
| [[package]] |
| name = "deepsize_derive" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "eefac8b754bebccb018f15a8ff0015a3f58fb298825f5bd0dcf3e7e2c017e992" |
| dependencies = [ |
| "proc-macro2 0.4.27", |
| "quote 0.6.11", |
| "syn 0.15.26", |
| ] |
| |
| [[package]] |
| name = "deflate" |
| version = "0.7.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8a6abb26e16e8d419b5c78662aa9f82857c2386a073da266840e474d5055ec86" |
| dependencies = [ |
| "adler32", |
| "byteorder", |
| ] |
| |
| [[package]] |
| name = "der" |
| version = "0.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" |
| dependencies = [ |
| "const-oid", |
| "pem-rfc7468", |
| ] |
| |
| [[package]] |
| name = "derivative" |
| version = "2.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "derive_arbitrary" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b24629208e87a2d8b396ff43b15c4afb0a69cea3fbbaa9ed9b92b7c02f0aed73" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "derive_builder" |
| version = "0.11.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "11d918e7dabe374a51dae0f29d818fece3b218b8b4eabec3bc4d42c537e7ed8f" |
| dependencies = [ |
| "derive_builder_macro", |
| ] |
| |
| [[package]] |
| name = "derive_builder_core" |
| version = "0.11.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f712c2d4e52d5fcae53584e461dcb92fb2202e144ebf83ab0ba4360d18b767c7" |
| dependencies = [ |
| "darling", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "derive_builder_macro" |
| version = "0.11.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a8a2ac71b4a9a590dde6cee3ca4687aca5e7ce06f4ee297c5a959de5f1e42b2e" |
| dependencies = [ |
| "derive_builder_core", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "derp" |
| version = "0.0.14" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c9b84cfd9b6fa437e498215e5625e9e3ae3bf9bb54d623028a181c40820db169" |
| dependencies = [ |
| "untrusted", |
| ] |
| |
| [[package]] |
| name = "difference" |
| version = "2.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" |
| |
| [[package]] |
| name = "digest" |
| version = "0.7.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" |
| dependencies = [ |
| "generic-array 0.9.0", |
| ] |
| |
| [[package]] |
| name = "digest" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" |
| dependencies = [ |
| "generic-array 0.14.5", |
| ] |
| |
| [[package]] |
| name = "downcast" |
| version = "0.10.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4bb454f0228b18c7f4c3b0ebbee346ed9c52e7443b0999cd543ff3571205701d" |
| |
| [[package]] |
| name = "dyn-clone" |
| version = "1.0.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "21e50f3adc76d6a43f5ed73b698a87d0760ca74617f60f7c3b879003536fdd28" |
| |
| [[package]] |
| name = "easy-parallel" |
| version = "3.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1dd4afd79212583ff429b913ad6605242ed7eec277e950b1438f300748f948f4" |
| |
| [[package]] |
| name = "ecdsa" |
| version = "0.13.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d0d69ae62e0ce582d56380743515fefaf1a8c70cec685d9677636d7e30ae9dc9" |
| dependencies = [ |
| "der", |
| "elliptic-curve", |
| "rfc6979", |
| "signature", |
| ] |
| |
| [[package]] |
| name = "either" |
| version = "1.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" |
| |
| [[package]] |
| name = "elliptic-curve" |
| version = "0.11.12" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "25b477563c2bfed38a3b7a60964c49e058b2510ad3f12ba3483fd8f62c2306d6" |
| dependencies = [ |
| "base16ct", |
| "crypto-bigint", |
| "der", |
| "ff", |
| "generic-array 0.14.5", |
| "group", |
| "pem-rfc7468", |
| "rand_core 0.6.3", |
| "sec1", |
| "serde", |
| "subtle", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "encode_unicode" |
| version = "0.3.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "90b2c9496c001e8cb61827acdefad780795c42264c137744cae6f7d9e3450abd" |
| |
| [[package]] |
| name = "enum-as-inner" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" |
| dependencies = [ |
| "heck 0.4.0", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "error-chain" |
| version = "0.12.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" |
| dependencies = [ |
| "backtrace", |
| ] |
| |
| [[package]] |
| name = "euclid" |
| version = "0.22.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5337024b8293bdce5265dc9570ef6e608a34bfacbbc87fe1a5dcb5f1dac2f4e2" |
| dependencies = [ |
| "num-traits", |
| "serde", |
| ] |
| |
| [[package]] |
| name = "eui48" |
| version = "1.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "887418ac5e8d57c2e66e04bdc2fe15f9a5407be20b54a82c86bd0e368b709701" |
| dependencies = [ |
| "regex", |
| "serde", |
| ] |
| |
| [[package]] |
| name = "event-listener" |
| version = "2.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59" |
| |
| [[package]] |
| name = "fake-simd" |
| version = "0.1.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" |
| |
| [[package]] |
| name = "fastrand" |
| version = "1.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3" |
| dependencies = [ |
| "instant", |
| ] |
| |
| [[package]] |
| name = "fatfs" |
| version = "0.4.0" |
| dependencies = [ |
| "bitflags", |
| "byteorder", |
| "chrono", |
| "log", |
| ] |
| |
| [[package]] |
| name = "ff" |
| version = "0.11.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b2958d04124b9f27f175eaeb9a9f383d026098aa837eadd8ba22c11f13a05b9e" |
| dependencies = [ |
| "rand_core 0.6.3", |
| "subtle", |
| ] |
| |
| [[package]] |
| name = "filetime" |
| version = "0.2.14" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "libc", |
| "redox_syscall 0.2.13", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "fixedbitset" |
| version = "0.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" |
| |
| [[package]] |
| name = "flate2" |
| version = "1.0.14" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| "crc32fast", |
| "libc", |
| "miniz_oxide", |
| ] |
| |
| [[package]] |
| name = "float-cmp" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4" |
| dependencies = [ |
| "num-traits", |
| ] |
| |
| [[package]] |
| name = "fnv" |
| version = "1.0.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" |
| |
| [[package]] |
| name = "fragile" |
| version = "1.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "69a039c3498dc930fe810151a34ba0c1c70b02b8625035592e74432f678591f2" |
| |
| [[package]] |
| name = "fs_extra" |
| version = "1.2.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" |
| |
| [[package]] |
| name = "fsevent-sys" |
| version = "4.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5c0e564d24da983c053beff1bb7178e237501206840a3e6bf4e267b9e8ae734a" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "fuchsia-cprng" |
| version = "0.1.1" |
| |
| [[package]] |
| name = "fuchsia-third-party" |
| version = "0.1.0" |
| dependencies = [ |
| "aead", |
| "aes", |
| "aes-gcm", |
| "aes-gcm-siv", |
| "ansi_term", |
| "anyhow", |
| "arbitrary", |
| "argh", |
| "arrayvec", |
| "assert_matches", |
| "async-broadcast", |
| "async-channel", |
| "async-executor", |
| "async-fs", |
| "async-io", |
| "async-lock", |
| "async-net", |
| "async-trait", |
| "atomic-waker", |
| "atty", |
| "base64 0.9.3", |
| "bincode", |
| "bitfield", |
| "bitflags", |
| "blocking", |
| "bumpalo", |
| "byteorder", |
| "bytes", |
| "camino", |
| "cargo_metadata", |
| "cfg-if 1.0.0", |
| "chacha20", |
| "chrono", |
| "chrono-english", |
| "clap", |
| "concurrent-queue", |
| "crc", |
| "criterion", |
| "crossbeam", |
| "crossbeam-utils 0.8.4", |
| "crossterm", |
| "csv", |
| "darling", |
| "dashmap", |
| "data-encoding", |
| "deepsize", |
| "derivative", |
| "derive_builder", |
| "derp", |
| "difference", |
| "easy-parallel", |
| "ecdsa", |
| "either", |
| "elliptic-curve", |
| "euclid", |
| "eui48", |
| "event-listener", |
| "fatfs", |
| "flate2", |
| "fs_extra", |
| "futures", |
| "futures-channel", |
| "futures-core", |
| "futures-executor", |
| "futures-io", |
| "futures-lite", |
| "futures-macro", |
| "futures-sink", |
| "futures-task", |
| "futures-test", |
| "futures-util", |
| "getopts", |
| "getrandom", |
| "glob", |
| "gpt", |
| "handlebars", |
| "heck 0.3.1", |
| "hex", |
| "hmac", |
| "home", |
| "http", |
| "humansize", |
| "hyper", |
| "hyper-rustls", |
| "indexmap", |
| "indoc", |
| "iota", |
| "itertools 0.10.1", |
| "itoa 0.4.3", |
| "json5format", |
| "lazy_static", |
| "libc", |
| "libm", |
| "linked-hash-map", |
| "lipsum", |
| "log", |
| "lru-cache", |
| "maplit", |
| "maybe-owned", |
| "memchr", |
| "memoffset 0.5.3", |
| "miniz_oxide", |
| "mockall", |
| "nix", |
| "nom", |
| "nom_locate", |
| "nonzero_ext", |
| "notify", |
| "num", |
| "num-derive", |
| "num-traits", |
| "numtoa", |
| "once_cell", |
| "openat", |
| "owning_ref", |
| "p256", |
| "parking", |
| "parking_lot 0.9.0", |
| "paste", |
| "pathdiff", |
| "pem", |
| "percent-encoding 2.1.0", |
| "pest", |
| "pest_derive", |
| "pest_generator", |
| "petgraph", |
| "pin-project", |
| "pin-utils", |
| "png", |
| "polling", |
| "pretty", |
| "pretty_assertions", |
| "prettytable-rs", |
| "proc-macro-nested", |
| "proc-macro2 1.0.39", |
| "proptest", |
| "proptest-derive", |
| "prost", |
| "pulldown-cmark", |
| "quote 1.0.18", |
| "rand 0.8.4", |
| "rand_xorshift 0.3.0", |
| "rayon", |
| "regex", |
| "regex-syntax", |
| "ring", |
| "rust_icu_common", |
| "rust_icu_sys", |
| "rust_icu_ucal", |
| "rust_icu_uchar", |
| "rust_icu_udat", |
| "rust_icu_udata", |
| "rust_icu_uenum", |
| "rust_icu_uloc", |
| "rust_icu_unorm2", |
| "rust_icu_ustring", |
| "rustc-demangle", |
| "rustc-hash", |
| "rustfix", |
| "rustls", |
| "rustls-native-certs", |
| "schemars", |
| "scopeguard", |
| "scrypt", |
| "serde", |
| "serde_cbor", |
| "serde_derive", |
| "serde_json", |
| "serde_json5", |
| "serde_repr", |
| "serde_yaml", |
| "serial_test", |
| "sha2", |
| "shared_child", |
| "signal-hook 0.3.8", |
| "signature", |
| "simplelog", |
| "siphasher 0.3.10", |
| "slab", |
| "smallvec 1.8.0", |
| "socket2", |
| "splines", |
| "static_assertions", |
| "streaming-stats", |
| "strsim 0.10.0", |
| "structopt", |
| "syn 1.0.98", |
| "synstructure", |
| "tar", |
| "tempfile", |
| "termion", |
| "termios", |
| "test-case", |
| "textwrap", |
| "thiserror", |
| "tokio", |
| "tokio-rustls", |
| "toml", |
| "toml_edit", |
| "tower-service", |
| "tracing", |
| "tracing-core", |
| "tracing-futures", |
| "tracing-log", |
| "tracing-mutex", |
| "tracing-subscriber", |
| "trust-dns-proto", |
| "trust-dns-resolver", |
| "ttf-parser", |
| "tuf", |
| "tui", |
| "typed-builder", |
| "unic-char-range", |
| "unic-ucd-block", |
| "unicase", |
| "unicode-normalization", |
| "unicode-segmentation", |
| "unicode-width", |
| "unicode-xid 0.2.0", |
| "untrusted", |
| "url 2.1.0", |
| "utf8parse", |
| "uuid 0.7.2", |
| "valico", |
| "vk-sys", |
| "void", |
| "vte", |
| "waker-fn", |
| "walkdir", |
| "wasm-bindgen", |
| "webpki", |
| "xml-rs", |
| "xts-mode", |
| "zip", |
| "zstd", |
| "zstd-safe", |
| ] |
| |
| [[package]] |
| name = "futures" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4" |
| dependencies = [ |
| "futures-channel", |
| "futures-core", |
| "futures-executor", |
| "futures-io", |
| "futures-sink", |
| "futures-task", |
| "futures-util", |
| ] |
| |
| [[package]] |
| name = "futures-channel" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b" |
| dependencies = [ |
| "futures-core", |
| "futures-sink", |
| ] |
| |
| [[package]] |
| name = "futures-core" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7" |
| |
| [[package]] |
| name = "futures-executor" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a" |
| dependencies = [ |
| "futures-core", |
| "futures-task", |
| "futures-util", |
| ] |
| |
| [[package]] |
| name = "futures-io" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2" |
| |
| [[package]] |
| name = "futures-lite" |
| version = "1.11.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b4481d0cd0de1d204a4fa55e7d45f07b1d958abcb06714b3446438e2eff695fb" |
| dependencies = [ |
| "fastrand", |
| "futures-core", |
| "futures-io", |
| "memchr", |
| "parking", |
| "pin-project-lite", |
| "waker-fn", |
| ] |
| |
| [[package]] |
| name = "futures-macro" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "futures-sink" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508" |
| |
| [[package]] |
| name = "futures-task" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72" |
| |
| [[package]] |
| name = "futures-test" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4e741bc851e1e90ad08901b329389ae77e02d5e9a0ec61955b80834630fbdc2f" |
| dependencies = [ |
| "futures-core", |
| "futures-executor", |
| "futures-io", |
| "futures-macro", |
| "futures-sink", |
| "futures-task", |
| "futures-util", |
| "pin-project", |
| "pin-utils", |
| ] |
| |
| [[package]] |
| name = "futures-util" |
| version = "0.3.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164" |
| dependencies = [ |
| "futures-channel", |
| "futures-core", |
| "futures-io", |
| "futures-macro", |
| "futures-sink", |
| "futures-task", |
| "memchr", |
| "pin-project-lite", |
| "pin-utils", |
| "slab", |
| ] |
| |
| [[package]] |
| name = "generic-array" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" |
| dependencies = [ |
| "typenum", |
| ] |
| |
| [[package]] |
| name = "generic-array" |
| version = "0.14.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" |
| dependencies = [ |
| "typenum", |
| "version_check 0.9.2", |
| ] |
| |
| [[package]] |
| name = "getopts" |
| version = "0.2.18" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797" |
| dependencies = [ |
| "unicode-width", |
| ] |
| |
| [[package]] |
| name = "getrandom" |
| version = "0.2.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "js-sys", |
| "libc", |
| "wasi", |
| "wasm-bindgen", |
| ] |
| |
| [[package]] |
| name = "ghash" |
| version = "0.4.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" |
| dependencies = [ |
| "opaque-debug", |
| "polyval", |
| ] |
| |
| [[package]] |
| name = "glob" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" |
| |
| [[package]] |
| name = "gpt" |
| version = "3.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5dd7365d734a70ac5dd7be791b0c96083852188df015b8c665bb2dadb108a743" |
| dependencies = [ |
| "bitflags", |
| "crc", |
| "log", |
| "uuid 0.8.2", |
| ] |
| |
| [[package]] |
| name = "group" |
| version = "0.11.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "bc5ac374b108929de78460075f3dc439fa66df9d8fc77e8f12caa5165fcf0c89" |
| dependencies = [ |
| "ff", |
| "rand_core 0.6.3", |
| "subtle", |
| ] |
| |
| [[package]] |
| name = "half" |
| version = "1.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177" |
| |
| [[package]] |
| name = "handlebars" |
| version = "4.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "25546a65e5cf1f471f3438796fc634650b31d7fcde01d444c309aeb28b92e3a8" |
| dependencies = [ |
| "log", |
| "pest", |
| "pest_derive", |
| "quick-error 2.0.0", |
| "serde", |
| "serde_json", |
| ] |
| |
| [[package]] |
| name = "hashbrown" |
| version = "0.11.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" |
| |
| [[package]] |
| name = "heck" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" |
| dependencies = [ |
| "unicode-segmentation", |
| ] |
| |
| [[package]] |
| name = "heck" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" |
| |
| [[package]] |
| name = "hermit-abi" |
| version = "0.1.8" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "hex" |
| version = "0.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" |
| |
| [[package]] |
| name = "hmac" |
| version = "0.11.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" |
| dependencies = [ |
| "crypto-mac", |
| "digest 0.9.0", |
| ] |
| |
| [[package]] |
| name = "home" |
| version = "0.5.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654" |
| dependencies = [ |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "http" |
| version = "0.2.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11" |
| dependencies = [ |
| "bytes", |
| "fnv", |
| "itoa 0.4.3", |
| ] |
| |
| [[package]] |
| name = "http-body" |
| version = "0.4.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" |
| dependencies = [ |
| "bytes", |
| "http", |
| "pin-project-lite", |
| ] |
| |
| [[package]] |
| name = "httparse" |
| version = "1.7.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" |
| |
| [[package]] |
| name = "httpdate" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" |
| |
| [[package]] |
| name = "humansize" |
| version = "1.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026" |
| |
| [[package]] |
| name = "hyper" |
| version = "0.14.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f" |
| dependencies = [ |
| "bytes", |
| "futures-channel", |
| "futures-core", |
| "futures-util", |
| "http", |
| "http-body", |
| "httparse", |
| "httpdate", |
| "itoa 1.0.2", |
| "pin-project-lite", |
| "tokio", |
| "tower-service", |
| "tracing", |
| "want", |
| ] |
| |
| [[package]] |
| name = "hyper-rustls" |
| version = "0.22.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" |
| dependencies = [ |
| "futures-util", |
| "hyper", |
| "log", |
| "rustls", |
| "rustls-native-certs", |
| "tokio", |
| "tokio-rustls", |
| "webpki", |
| ] |
| |
| [[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.1.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" |
| dependencies = [ |
| "matches", |
| "unicode-bidi", |
| "unicode-normalization", |
| ] |
| |
| [[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 = "indexmap" |
| version = "1.7.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "hashbrown", |
| "serde", |
| ] |
| |
| [[package]] |
| name = "indoc" |
| version = "1.0.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e5a75aeaaef0ce18b58056d306c27b07436fbb34b8816c53094b76dd81803136" |
| dependencies = [ |
| "unindent", |
| ] |
| |
| [[package]] |
| name = "inflate" |
| version = "0.4.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff" |
| dependencies = [ |
| "adler32", |
| ] |
| |
| [[package]] |
| name = "inotify" |
| version = "0.9.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b031475cb1b103ee221afb806a23d35e0570bf7271d7588762ceba8127ed43b3" |
| dependencies = [ |
| "bitflags", |
| "inotify-sys", |
| "libc", |
| ] |
| |
| [[package]] |
| name = "inotify-sys" |
| version = "0.1.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "instant" |
| version = "0.1.9" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| ] |
| |
| [[package]] |
| name = "iota" |
| version = "0.2.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "89e730ff45c40144e64262ee1fdb0d81984ccb854b17d370444ef111d251635f" |
| |
| [[package]] |
| name = "ipnet" |
| version = "2.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9" |
| |
| [[package]] |
| name = "itertools" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" |
| dependencies = [ |
| "either", |
| ] |
| |
| [[package]] |
| name = "itertools" |
| version = "0.10.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" |
| dependencies = [ |
| "either", |
| ] |
| |
| [[package]] |
| name = "itoa" |
| version = "0.4.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" |
| |
| [[package]] |
| name = "itoa" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" |
| |
| [[package]] |
| name = "js-sys" |
| version = "0.3.39" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fa5a448de267e7358beaf4a5d849518fe9a0c13fce7afd44b06e68550e5562a7" |
| dependencies = [ |
| "wasm-bindgen", |
| ] |
| |
| [[package]] |
| name = "json5format" |
| version = "0.2.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b2894a72f82fa9f20e628bf4329cd0fb8e9fd5e87cc35944665a42b25bae9902" |
| dependencies = [ |
| "lazy_static", |
| "regex", |
| ] |
| |
| [[package]] |
| name = "jsonway" |
| version = "2.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "effcb749443c905fbaef49d214f8b1049c240e0adb7af9baa0e201e625e4f9de" |
| dependencies = [ |
| "serde", |
| "serde_json", |
| ] |
| |
| [[package]] |
| name = "lazy_static" |
| version = "1.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
| |
| [[package]] |
| name = "libc" |
| version = "0.2.116" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "565dbd88872dbe4cc8a46e527f26483c1d1f7afa6b884a3bd6cd893d4f98da74" |
| |
| [[package]] |
| name = "libm" |
| version = "0.2.1" |
| dependencies = [ |
| "static_assertions", |
| ] |
| |
| [[package]] |
| name = "linked-hash-map" |
| version = "0.5.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" |
| |
| [[package]] |
| name = "lipsum" |
| version = "0.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "58e4464067d52ca040073c04dfd9185658ec8a32236b857b5e1577f9d19f9d5a" |
| dependencies = [ |
| "rand 0.6.5", |
| ] |
| |
| [[package]] |
| name = "lock_api" |
| version = "0.3.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" |
| dependencies = [ |
| "scopeguard", |
| ] |
| |
| [[package]] |
| name = "lock_api" |
| version = "0.4.7" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "scopeguard", |
| ] |
| |
| [[package]] |
| name = "log" |
| version = "0.4.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| ] |
| |
| [[package]] |
| name = "lru-cache" |
| version = "0.1.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" |
| dependencies = [ |
| "linked-hash-map", |
| ] |
| |
| [[package]] |
| name = "maplit" |
| version = "1.0.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" |
| |
| [[package]] |
| name = "matches" |
| version = "0.1.9" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" |
| |
| [[package]] |
| name = "maybe-owned" |
| version = "0.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "006ac35c23dc00cd88083b27297224aedc893d628aff7374352b4f3d57315fa9" |
| |
| [[package]] |
| name = "maybe-uninit" |
| version = "2.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" |
| |
| [[package]] |
| name = "memchr" |
| version = "2.4.0" |
| |
| [[package]] |
| name = "memoffset" |
| version = "0.5.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" |
| dependencies = [ |
| "rustc_version", |
| ] |
| |
| [[package]] |
| name = "memoffset" |
| version = "0.6.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f83fb6581e8ed1f85fd45c116db8405483899489e38406156c25eb743554361d" |
| dependencies = [ |
| "autocfg 1.1.0", |
| ] |
| |
| [[package]] |
| name = "miniz_oxide" |
| version = "0.3.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5" |
| dependencies = [ |
| "adler32", |
| ] |
| |
| [[package]] |
| name = "mio" |
| version = "0.7.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956" |
| dependencies = [ |
| "libc", |
| "log", |
| "miow", |
| "ntapi", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "miow" |
| version = "0.3.7" |
| |
| [[package]] |
| name = "mockall" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "619634fd9149c4a06e66d8fd9256e85326d8eeee75abee4565ff76c92e4edfe0" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "downcast", |
| "fragile", |
| "lazy_static", |
| "mockall_derive", |
| "predicates", |
| "predicates-tree", |
| ] |
| |
| [[package]] |
| name = "mockall_derive" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "83714c95dbf4c24202f0f1b208f0f248e6bd65abfa8989303611a71c0f781548" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "nix" |
| version = "0.20.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" |
| dependencies = [ |
| "bitflags", |
| "cc", |
| "cfg-if 1.0.0", |
| "libc", |
| ] |
| |
| [[package]] |
| name = "nom" |
| version = "5.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e9761d859320e381010a4f7f8ed425f2c924de33ad121ace447367c713ad561b" |
| dependencies = [ |
| "lazy_static", |
| "memchr", |
| "regex", |
| "version_check 0.1.5", |
| ] |
| |
| [[package]] |
| name = "nom_locate" |
| version = "2.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a67484adf5711f94f2f28b653bf231bff8e438be33bf5b0f35935a0db4f618a2" |
| dependencies = [ |
| "bytecount", |
| "memchr", |
| "nom", |
| ] |
| |
| [[package]] |
| name = "nonzero_ext" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" |
| |
| [[package]] |
| name = "normalize-line-endings" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" |
| |
| [[package]] |
| name = "notify" |
| version = "5.0.0-pre.10" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "51f18203a26893ca1d3526cf58084025d5639f91c44f8b70ab3b724f60e819a0" |
| dependencies = [ |
| "bitflags", |
| "crossbeam-channel", |
| "filetime", |
| "fsevent-sys", |
| "inotify", |
| "libc", |
| "mio", |
| "walkdir", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "ntapi" |
| version = "0.3.4" |
| dependencies = [ |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "num" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" |
| dependencies = [ |
| "num-bigint", |
| "num-complex", |
| "num-integer", |
| "num-iter", |
| "num-rational", |
| "num-traits", |
| ] |
| |
| [[package]] |
| name = "num-bigint" |
| version = "0.4.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "num-integer", |
| "num-traits", |
| "rand 0.8.4", |
| ] |
| |
| [[package]] |
| name = "num-complex" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085" |
| dependencies = [ |
| "num-traits", |
| "rand 0.8.4", |
| ] |
| |
| [[package]] |
| name = "num-derive" |
| version = "0.3.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "num-integer" |
| version = "0.1.44" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "num-traits", |
| ] |
| |
| [[package]] |
| name = "num-iter" |
| version = "0.1.42" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "num-integer", |
| "num-traits", |
| ] |
| |
| [[package]] |
| name = "num-rational" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" |
| dependencies = [ |
| "autocfg 1.1.0", |
| "num-bigint", |
| "num-integer", |
| "num-traits", |
| ] |
| |
| [[package]] |
| name = "num-traits" |
| version = "0.2.14" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" |
| dependencies = [ |
| "autocfg 1.1.0", |
| ] |
| |
| [[package]] |
| name = "num_cpus" |
| version = "1.13.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" |
| dependencies = [ |
| "hermit-abi", |
| "libc", |
| ] |
| |
| [[package]] |
| name = "numtoa" |
| version = "0.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" |
| |
| [[package]] |
| name = "once_cell" |
| version = "1.5.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0" |
| dependencies = [ |
| "parking_lot 0.11.1", |
| ] |
| |
| [[package]] |
| name = "opaque-debug" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" |
| |
| [[package]] |
| name = "openat" |
| version = "0.1.17" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4df5affb262d19e75f7603e83032edd924ed11f13a96248388fcd72acca6eec7" |
| dependencies = [ |
| "libc", |
| ] |
| |
| [[package]] |
| name = "openssl-probe" |
| version = "0.1.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" |
| |
| [[package]] |
| name = "owning_ref" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" |
| dependencies = [ |
| "stable_deref_trait", |
| ] |
| |
| [[package]] |
| name = "p256" |
| version = "0.10.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "19736d80675fbe9fe33426268150b951a3fb8f5cfca2a23a17c85ef3adb24e3b" |
| dependencies = [ |
| "ecdsa", |
| "elliptic-curve", |
| "sec1", |
| "sha2", |
| ] |
| |
| [[package]] |
| name = "parking" |
| version = "2.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" |
| |
| [[package]] |
| name = "parking_lot" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" |
| dependencies = [ |
| "lock_api 0.3.4", |
| "parking_lot_core 0.6.2", |
| "rustc_version", |
| ] |
| |
| [[package]] |
| name = "parking_lot" |
| version = "0.11.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" |
| dependencies = [ |
| "instant", |
| "lock_api 0.4.7", |
| "parking_lot_core 0.8.3", |
| ] |
| |
| [[package]] |
| name = "parking_lot" |
| version = "0.12.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" |
| dependencies = [ |
| "lock_api 0.4.7", |
| "parking_lot_core 0.9.2", |
| ] |
| |
| [[package]] |
| name = "parking_lot_core" |
| version = "0.6.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| "cloudabi", |
| "libc", |
| "redox_syscall 0.1.51", |
| "rustc_version", |
| "smallvec 0.6.13", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "parking_lot_core" |
| version = "0.8.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "instant", |
| "libc", |
| "redox_syscall 0.2.13", |
| "smallvec 1.8.0", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "parking_lot_core" |
| version = "0.9.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "995f667a6c822200b0433ac218e05582f0e2efa1b922a3fd2fbaadc5f87bab37" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "libc", |
| "redox_syscall 0.2.13", |
| "smallvec 1.8.0", |
| "windows-sys", |
| ] |
| |
| [[package]] |
| name = "password-hash" |
| version = "0.3.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8" |
| dependencies = [ |
| "base64ct", |
| "rand_core 0.6.3", |
| "subtle", |
| ] |
| |
| [[package]] |
| name = "paste" |
| version = "1.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f6ddc8e145de01d9180ac7b78b9676f95a9c2447f6a88b2c2a04702211bc5d71" |
| |
| [[package]] |
| name = "pathdiff" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" |
| dependencies = [ |
| "camino", |
| ] |
| |
| [[package]] |
| name = "pbkdf2" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f05894bce6a1ba4be299d0c5f29563e08af2bc18bb7d48313113bed71e904739" |
| dependencies = [ |
| "crypto-mac", |
| ] |
| |
| [[package]] |
| name = "pem" |
| version = "0.8.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" |
| dependencies = [ |
| "base64 0.13.0", |
| "once_cell", |
| "regex", |
| ] |
| |
| [[package]] |
| name = "pem-rfc7468" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "01de5d978f34aa4b2296576379fcc416034702fd94117c56ffd8a1a767cefb30" |
| dependencies = [ |
| "base64ct", |
| ] |
| |
| [[package]] |
| name = "percent-encoding" |
| version = "1.0.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" |
| |
| [[package]] |
| name = "percent-encoding" |
| version = "2.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" |
| |
| [[package]] |
| name = "pest" |
| version = "2.1.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53" |
| dependencies = [ |
| "ucd-trie", |
| ] |
| |
| [[package]] |
| name = "pest_derive" |
| version = "2.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0" |
| dependencies = [ |
| "pest", |
| "pest_generator", |
| ] |
| |
| [[package]] |
| name = "pest_generator" |
| version = "2.1.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55" |
| dependencies = [ |
| "pest", |
| "pest_meta", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "pest_meta" |
| version = "2.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f5a3492a4ed208ffc247adcdcc7ba2a95be3104f58877d0d02f0df39bf3efb5e" |
| dependencies = [ |
| "maplit", |
| "pest", |
| "sha-1", |
| ] |
| |
| [[package]] |
| name = "petgraph" |
| version = "0.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7" |
| dependencies = [ |
| "fixedbitset", |
| "indexmap", |
| ] |
| |
| [[package]] |
| name = "phf" |
| version = "0.7.24" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" |
| dependencies = [ |
| "phf_shared", |
| ] |
| |
| [[package]] |
| name = "phf_codegen" |
| version = "0.7.24" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" |
| dependencies = [ |
| "phf_generator", |
| "phf_shared", |
| ] |
| |
| [[package]] |
| name = "phf_generator" |
| version = "0.7.24" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" |
| dependencies = [ |
| "phf_shared", |
| "rand 0.6.5", |
| ] |
| |
| [[package]] |
| name = "phf_shared" |
| version = "0.7.24" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" |
| dependencies = [ |
| "siphasher 0.2.3", |
| ] |
| |
| [[package]] |
| name = "pin-project" |
| version = "1.0.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "95b70b68509f17aa2857863b6fa00bf21fc93674c7a8893de2f469f6aa7ca2f2" |
| dependencies = [ |
| "pin-project-internal", |
| ] |
| |
| [[package]] |
| name = "pin-project-internal" |
| version = "1.0.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "caa25a6393f22ce819b0f50e0be89287292fda8d425be38ee0ca14c4931d9e71" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "pin-project-lite" |
| version = "0.2.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827" |
| |
| [[package]] |
| name = "pin-utils" |
| version = "0.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" |
| |
| [[package]] |
| name = "pkcs8" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0" |
| dependencies = [ |
| "der", |
| "spki", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "png" |
| version = "0.14.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9adebf7fb91ccf5eac9da1a8e00e83cb8ae882c3e8d8e4ad59da73cb8c82a2c9" |
| dependencies = [ |
| "bitflags", |
| "deflate", |
| "inflate", |
| "num-iter", |
| ] |
| |
| [[package]] |
| name = "podio" |
| version = "0.1.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "780fb4b6698bbf9cf2444ea5d22411cef2953f0824b98f33cf454ec5615645bd" |
| |
| [[package]] |
| name = "polling" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4" |
| dependencies = [ |
| "cfg-if 0.1.10", |
| "libc", |
| "log", |
| "wepoll-sys", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "polyval" |
| version = "0.5.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" |
| dependencies = [ |
| "cfg-if 1.0.0", |
| "cpufeatures", |
| "opaque-debug", |
| "universal-hash", |
| ] |
| |
| [[package]] |
| name = "ppv-lite86" |
| version = "0.2.10" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" |
| |
| [[package]] |
| name = "predicates" |
| version = "1.0.7" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "eeb433456c1a57cc93554dea3ce40b4c19c4057e41c55d4a0f3d84ea71c325aa" |
| dependencies = [ |
| "difference", |
| "float-cmp", |
| "normalize-line-endings", |
| "predicates-core", |
| "regex", |
| ] |
| |
| [[package]] |
| name = "predicates-core" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "57e35a3326b75e49aa85f5dc6ec15b41108cf5aee58eabb1f274dd18b73c2451" |
| |
| [[package]] |
| name = "predicates-tree" |
| version = "1.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "15f553275e5721409451eb85e15fd9a860a6e5ab4496eb215987502b5f5391f2" |
| dependencies = [ |
| "predicates-core", |
| "treeline", |
| ] |
| |
| [[package]] |
| name = "pretty" |
| version = "0.5.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f60c0d9f6fc88ecdd245d90c1920ff76a430ab34303fc778d33b1d0a4c3bf6d3" |
| dependencies = [ |
| "typed-arena", |
| ] |
| |
| [[package]] |
| name = "pretty_assertions" |
| version = "0.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "3a029430f0d744bc3d15dd474d591bed2402b645d024583082b9f63bb936dac6" |
| dependencies = [ |
| "ansi_term", |
| "difference", |
| ] |
| |
| [[package]] |
| name = "prettytable-rs" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0fd04b170004fa2daccf418a7f8253aaf033c27760b5f225889024cf66d7ac2e" |
| dependencies = [ |
| "atty", |
| "csv", |
| "encode_unicode", |
| "lazy_static", |
| "term", |
| "unicode-width", |
| ] |
| |
| [[package]] |
| name = "proc-macro-nested" |
| version = "0.1.7" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" |
| |
| [[package]] |
| name = "proc-macro2" |
| version = "0.4.27" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" |
| dependencies = [ |
| "unicode-xid 0.1.0", |
| ] |
| |
| [[package]] |
| name = "proc-macro2" |
| version = "1.0.39" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f" |
| dependencies = [ |
| "unicode-ident", |
| ] |
| |
| [[package]] |
| name = "proptest" |
| version = "0.9.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2afed8cbdc8a64b58a5c021757a782351ec1afee85be374872721c84d5da5d80" |
| dependencies = [ |
| "bit-set", |
| "bitflags", |
| "byteorder", |
| "lazy_static", |
| "num-traits", |
| "quick-error 1.2.2", |
| "rand 0.6.5", |
| "rand_chacha 0.1.1", |
| "rand_xorshift 0.1.1", |
| "regex-syntax", |
| "rusty-fork", |
| "tempfile", |
| ] |
| |
| [[package]] |
| name = "proptest-derive" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "08b264c54525e760fc1d39c5b2bfc96923b922a752893053b4adaafe33fa9346" |
| dependencies = [ |
| "proc-macro2 0.4.27", |
| "quote 0.6.11", |
| "syn 0.15.26", |
| ] |
| |
| [[package]] |
| name = "prost" |
| version = "0.10.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a07b0857a71a8cb765763950499cae2413c3f9cede1133478c43600d9e146890" |
| dependencies = [ |
| "bytes", |
| "prost-derive", |
| ] |
| |
| [[package]] |
| name = "prost-derive" |
| version = "0.10.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" |
| dependencies = [ |
| "anyhow", |
| "itertools 0.10.1", |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "publicsuffix" |
| version = "1.5.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5afecba86dcf1e4fd610246f89899d1924fe12e1e89f555eb7c7f710f3c5ad1d" |
| dependencies = [ |
| "error-chain", |
| "idna 0.1.5", |
| "lazy_static", |
| "regex", |
| "url 1.7.2", |
| ] |
| |
| [[package]] |
| name = "pulldown-cmark" |
| version = "0.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "85b0ad0d4c1702965ee6bb5b4ff5e71f83850b497d497e9444302987bf9e26a4" |
| dependencies = [ |
| "bitflags", |
| "getopts", |
| "memchr", |
| "unicase", |
| ] |
| |
| [[package]] |
| name = "quick-error" |
| version = "1.2.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" |
| |
| [[package]] |
| name = "quick-error" |
| version = "2.0.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "3ac73b1112776fc109b2e61909bc46c7e1bf0d7f690ffb1676553acce16d5cda" |
| |
| [[package]] |
| name = "quote" |
| version = "0.6.11" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" |
| dependencies = [ |
| "proc-macro2 0.4.27", |
| ] |
| |
| [[package]] |
| name = "quote" |
| version = "1.0.18" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| ] |
| |
| [[package]] |
| name = "rand" |
| version = "0.6.5" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" |
| dependencies = [ |
| "autocfg 0.1.7", |
| "libc", |
| "rand_chacha 0.1.1", |
| "rand_core 0.4.0", |
| "rand_hc 0.1.0", |
| "rand_isaac", |
| "rand_jitter", |
| "rand_os", |
| "rand_pcg", |
| "rand_xorshift 0.1.1", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "rand" |
| version = "0.8.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" |
| dependencies = [ |
| "libc", |
| "rand_chacha 0.3.1", |
| "rand_core 0.6.3", |
| "rand_hc 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rand_chacha" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" |
| dependencies = [ |
| "autocfg 0.1.7", |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rand_chacha" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" |
| dependencies = [ |
| "ppv-lite86", |
| "rand_core 0.6.3", |
| ] |
| |
| [[package]] |
| name = "rand_core" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" |
| dependencies = [ |
| "rand_core 0.4.0", |
| ] |
| |
| [[package]] |
| name = "rand_core" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" |
| |
| [[package]] |
| name = "rand_core" |
| version = "0.6.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" |
| dependencies = [ |
| "getrandom", |
| ] |
| |
| [[package]] |
| name = "rand_hc" |
| version = "0.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" |
| dependencies = [ |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rand_hc" |
| version = "0.3.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" |
| dependencies = [ |
| "rand_core 0.6.3", |
| ] |
| |
| [[package]] |
| name = "rand_isaac" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" |
| dependencies = [ |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rand_jitter" |
| version = "0.1.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" |
| dependencies = [ |
| "libc", |
| "rand_core 0.4.0", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "rand_os" |
| version = "0.1.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b7c690732391ae0abafced5015ffb53656abfaec61b342290e5eb56b286a679d" |
| dependencies = [ |
| "cloudabi", |
| "fuchsia-cprng", |
| "libc", |
| "rand_core 0.4.0", |
| "rdrand", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "rand_pcg" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" |
| dependencies = [ |
| "rand_core 0.3.1", |
| "rustc_version", |
| ] |
| |
| [[package]] |
| name = "rand_xorshift" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" |
| dependencies = [ |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rand_xorshift" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" |
| dependencies = [ |
| "rand_core 0.6.3", |
| ] |
| |
| [[package]] |
| name = "rand_xoshiro" |
| version = "0.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "03b418169fb9c46533f326efd6eed2576699c44ca92d3052a066214a8d828929" |
| dependencies = [ |
| "byteorder", |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "rayon" |
| version = "1.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" |
| dependencies = [ |
| "crossbeam-deque 0.7.4", |
| "either", |
| "rayon-core", |
| ] |
| |
| [[package]] |
| name = "rayon-core" |
| version = "1.7.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" |
| dependencies = [ |
| "crossbeam-deque 0.7.4", |
| "crossbeam-queue 0.2.1", |
| "crossbeam-utils 0.7.2", |
| "lazy_static", |
| "num_cpus", |
| ] |
| |
| [[package]] |
| name = "rdrand" |
| version = "0.4.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" |
| dependencies = [ |
| "rand_core 0.3.1", |
| ] |
| |
| [[package]] |
| name = "redox_syscall" |
| version = "0.1.51" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" |
| |
| [[package]] |
| name = "redox_syscall" |
| version = "0.2.13" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" |
| dependencies = [ |
| "bitflags", |
| ] |
| |
| [[package]] |
| name = "redox_termios" |
| version = "0.1.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" |
| dependencies = [ |
| "redox_syscall 0.1.51", |
| ] |
| |
| [[package]] |
| name = "regex" |
| version = "1.5.6" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1" |
| dependencies = [ |
| "aho-corasick", |
| "memchr", |
| "regex-syntax", |
| ] |
| |
| [[package]] |
| name = "regex-automata" |
| version = "0.1.9" |
| dependencies = [ |
| "byteorder", |
| ] |
| |
| [[package]] |
| name = "regex-syntax" |
| version = "0.6.26" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" |
| |
| [[package]] |
| name = "remove_dir_all" |
| version = "0.5.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" |
| dependencies = [ |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "rfc6979" |
| version = "0.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "96ef608575f6392792f9ecf7890c00086591d29a83910939d430753f7c050525" |
| dependencies = [ |
| "crypto-bigint", |
| "hmac", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "ring" |
| version = "0.16.12" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1ba5a8ec64ee89a76c98c549af81ff14813df09c3e6dc4766c3856da48597a0c" |
| dependencies = [ |
| "cc", |
| "lazy_static", |
| "libc", |
| "spin", |
| "untrusted", |
| "web-sys", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "rust_icu_common" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "b2d8b0917e3b64788dce81e178ed0a98bdbb3b815d9610227badd15bb8d6590b" |
| dependencies = [ |
| "anyhow", |
| "rust_icu_sys", |
| "thiserror", |
| ] |
| |
| [[package]] |
| name = "rust_icu_sys" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1077c20b8bf1a31161d304dab3597cddc108caed2803af1d8d2afd768494a53d" |
| dependencies = [ |
| "anyhow", |
| "lazy_static", |
| "libc", |
| "paste", |
| ] |
| |
| [[package]] |
| name = "rust_icu_ucal" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "043dda0cae14b40fb469a216053d5528344eb997496cba98d44701fef0d33c93" |
| dependencies = [ |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| "rust_icu_uenum", |
| "rust_icu_ustring", |
| ] |
| |
| [[package]] |
| name = "rust_icu_uchar" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a183a6c0591526371bf09fd805686c33b51d79a0c63f0059ccb208e4928bae62" |
| dependencies = [ |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| ] |
| |
| [[package]] |
| name = "rust_icu_udat" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "f37fd7bd93a6fd863261e1825ef640960175174b06aa84269f3bf5913e4876ee" |
| dependencies = [ |
| "anyhow", |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| "rust_icu_ucal", |
| "rust_icu_uenum", |
| "rust_icu_uloc", |
| "rust_icu_ustring", |
| ] |
| |
| [[package]] |
| name = "rust_icu_udata" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "fbf4c2234fe72f80f17b5a620e828ddaca0d1b2d60316c10858624eb1b3c2c38" |
| dependencies = [ |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| ] |
| |
| [[package]] |
| name = "rust_icu_uenum" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "159b027a12a14337bfad95cea7b73c731d1085b5107acf78180ba43b5531176a" |
| dependencies = [ |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| ] |
| |
| [[package]] |
| name = "rust_icu_uloc" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "0612c3b5c1a1f6b17aac760df25a94cb4d020b9bd13d934b89cd5152081335fa" |
| dependencies = [ |
| "anyhow", |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| "rust_icu_uenum", |
| "rust_icu_ustring", |
| ] |
| |
| [[package]] |
| name = "rust_icu_unorm2" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5cd9e1af5d1a435c25467b2db7a01932443c1dc809fba0cea94e086226f543ba" |
| dependencies = [ |
| "anyhow", |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| "rust_icu_ucal", |
| "rust_icu_uenum", |
| "rust_icu_uloc", |
| "rust_icu_ustring", |
| ] |
| |
| [[package]] |
| name = "rust_icu_ustring" |
| version = "2.0.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7c504d11166b78d89aa77884de55e7bf109a930c64f899d3de3efb93f9f64f0a" |
| dependencies = [ |
| "log", |
| "paste", |
| "rust_icu_common", |
| "rust_icu_sys", |
| ] |
| |
| [[package]] |
| name = "rustc-demangle" |
| version = "0.1.16" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" |
| |
| [[package]] |
| name = "rustc-hash" |
| version = "1.0.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8" |
| dependencies = [ |
| "byteorder", |
| ] |
| |
| [[package]] |
| name = "rustc_version" |
| version = "0.2.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" |
| dependencies = [ |
| "semver 0.9.0", |
| ] |
| |
| [[package]] |
| name = "rustfix" |
| version = "0.6.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ecd2853d9e26988467753bd9912c3a126f642d05d229a4b53f5752ee36c56481" |
| dependencies = [ |
| "anyhow", |
| "log", |
| "serde", |
| "serde_json", |
| ] |
| |
| [[package]] |
| name = "rustls" |
| version = "0.19.1" |
| dependencies = [ |
| "base64 0.13.0", |
| "log", |
| "ring", |
| "sct", |
| "webpki", |
| ] |
| |
| [[package]] |
| name = "rustls-native-certs" |
| version = "0.5.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" |
| dependencies = [ |
| "openssl-probe", |
| "rustls", |
| "schannel", |
| "security-framework", |
| ] |
| |
| [[package]] |
| name = "rusty-fork" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9591f190d2852720b679c21f66ad929f9f1d7bb09d1193c26167586029d8489c" |
| dependencies = [ |
| "fnv", |
| "quick-error 1.2.2", |
| "tempfile", |
| "wait-timeout", |
| ] |
| |
| [[package]] |
| name = "ryu" |
| version = "1.0.3" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "535622e6be132bccd223f4bb2b8ac8d53cda3c7a6394944d3b2b33fb974f9d76" |
| |
| [[package]] |
| name = "safemem" |
| version = "0.3.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" |
| |
| [[package]] |
| name = "salsa20" |
| version = "0.8.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "ecbd2eb639fd7cab5804a0837fe373cc2172d15437e804c054a9fb885cb923b0" |
| dependencies = [ |
| "cipher", |
| ] |
| |
| [[package]] |
| name = "same-file" |
| version = "1.0.4" |
| dependencies = [ |
| "winapi-util", |
| ] |
| |
| [[package]] |
| name = "scanlex" |
| version = "0.1.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "088c5d71572124929ea7549a8ce98e1a6fd33d0a38367b09027b382e67c033db" |
| |
| [[package]] |
| name = "schannel" |
| version = "0.1.19" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" |
| dependencies = [ |
| "lazy_static", |
| "winapi", |
| ] |
| |
| [[package]] |
| name = "schemars" |
| version = "0.8.10" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1847b767a3d62d95cbf3d8a9f0e421cf57a0d8aa4f411d4b16525afb0284d4ed" |
| dependencies = [ |
| "chrono", |
| "dyn-clone", |
| "indexmap", |
| "schemars_derive", |
| "serde", |
| "serde_json", |
| ] |
| |
| [[package]] |
| name = "schemars_derive" |
| version = "0.8.10" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "af4d7e1b012cb3d9129567661a63755ea4b8a7386d339dc945ae187e403c6743" |
| dependencies = [ |
| "proc-macro2 1.0.39", |
| "quote 1.0.18", |
| "serde_derive_internals", |
| "syn 1.0.98", |
| ] |
| |
| [[package]] |
| name = "scopeguard" |
| version = "1.1.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" |
| |
| [[package]] |
| name = "scrypt" |
| version = "0.8.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "9f2cc535b6997b0c755bf9344e71ca0e1be070d07ff792f1fcd31e7b90e07d5f" |
| dependencies = [ |
| "hmac", |
| "password-hash", |
| "pbkdf2", |
| "salsa20", |
| "sha2", |
| ] |
| |
| [[package]] |
| name = "sct" |
| version = "0.6.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" |
| dependencies = [ |
| "ring", |
| "untrusted", |
| ] |
| |
| [[package]] |
| name = "sec1" |
| version = "0.2.1" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "08da66b8b0965a5555b6bd6639e68ccba85e1e2506f5fbb089e93f8a04e1a2d1" |
| dependencies = [ |
| "der", |
| "generic-array 0.14.5", |
| "pkcs8", |
| "serde", |
| "subtle", |
| "zeroize", |
| ] |
| |
| [[package]] |
| name = "security-framework" |
| version = "2.3.1" |
| dependencies = [ |
| "bitflags", |
| "core-foundation", |
| "core-foundation-sys", |
| "libc", |
| "security-framework-sys", |
| ] |
| |
| [[package]] |
| name = "security-framework-sys" |
| version = "2.4.2" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e" |
| dependencies = [ |
| "core-foundation-sys", |
| "libc", |
| ] |
| |
| [[package]] |
| name = "semver" |
| version = "0.9.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" |
| dependencies = [ |
| "semver-parser", |
| ] |
| |
| [[package]] |
| name = "semver" |
| version = "1.0.4" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012" |
| dependencies = [ |
| "serde", |
| ] |
| |
| [[package]] |
| name = "semver-parser" |
| version = "0.7.0" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" |
| |
| [[package]] |
| name = "serde" |
| version = "1.0.116" |
| source = "registry+https://github.com/rust-lang/crates.io-index" |
| checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5" |
| dependencies = [ |
| "serde_derive", |
| ] |
| |
| |