bakare/Cargo.lock

1000 lines
25 KiB
Text
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "anyhow"
2021-01-16 09:25:40 +00:00
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
[[package]]
name = "atomicwrites"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a2baf2feb820299c53c7ad1cc4f5914a220a1cb76d7ce321d2522a94b54651f"
dependencies = [
"nix 0.14.1",
"tempdir",
"winapi",
]
2018-10-04 15:21:34 +01:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2018-10-04 15:21:34 +01:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "bakare"
version = "0.1.0"
dependencies = [
"anyhow",
"atomicwrites",
"base64",
2020-11-07 10:40:32 +00:00
"cargo-husky",
2020-12-27 21:10:13 +00:00
"fail",
"femme",
"fs2",
"glob",
2020-11-07 10:40:32 +00:00
"hex",
"log",
2021-01-16 09:25:40 +00:00
"nix 0.19.1",
2020-11-28 11:48:37 +00:00
"proptest",
2021-01-16 09:25:40 +00:00
"rand 0.8.2",
"rayon",
2020-11-07 10:40:32 +00:00
"rust-crypto",
"serde",
"serde_cbor",
"serde_json",
2020-11-07 10:40:32 +00:00
"sha2",
"tempfile",
"thiserror",
"two-rusty-forks",
"uuid",
2020-12-25 16:29:00 +00:00
"vfs",
2020-11-07 10:40:32 +00:00
"walkdir",
]
[[package]]
name = "base64"
2020-11-08 20:17:38 +00:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-08 20:17:38 +00:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-11-28 11:48:37 +00:00
[[package]]
name = "bit-set"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
2021-01-16 09:25:40 +00:00
version = "0.6.3"
2020-11-28 11:48:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2020-11-28 11:48:37 +00:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
2020-11-07 10:40:32 +00:00
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2020-11-07 10:40:32 +00:00
"generic-array",
]
[[package]]
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
2020-11-28 11:48:37 +00:00
[[package]]
name = "byteorder"
2021-01-16 09:25:40 +00:00
version = "1.4.2"
2020-11-28 11:48:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
2020-11-28 11:48:37 +00:00
2019-09-07 16:12:18 +01:00
[[package]]
name = "cargo-husky"
2020-11-07 10:40:32 +00:00
version = "1.5.0"
2019-09-07 16:12:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
2019-09-07 16:12:18 +01:00
[[package]]
name = "cc"
2021-01-16 09:25:40 +00:00
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
2019-01-12 14:39:20 +00:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "cfg-if"
version = "0.1.10"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-01-12 14:39:20 +00:00
2018-12-20 16:47:28 +00:00
[[package]]
name = "cfg-if"
2020-11-07 10:40:32 +00:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "const_fn"
2021-01-16 09:25:40 +00:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6"
2020-11-07 10:40:32 +00:00
[[package]]
name = "cpuid-bool"
version = "0.1.2"
2018-12-20 16:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
2018-12-20 16:47:28 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2021-01-16 09:25:40 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
dependencies = [
"cfg-if 1.0.0",
"const_fn",
"crossbeam-utils",
"lazy_static",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2021-01-16 09:25:40 +00:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
"lazy_static",
]
[[package]]
name = "digest"
2020-11-07 10:40:32 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2020-11-07 10:40:32 +00:00
"generic-array",
]
2019-01-12 14:39:20 +00:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-12-27 21:10:13 +00:00
[[package]]
name = "fail"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3be3c61c59fdc91f5dbc3ea31ee8623122ce80057058be560654c5d410d181a6"
dependencies = [
"lazy_static",
"log",
"rand 0.7.3",
]
[[package]]
name = "femme"
2020-11-08 20:17:38 +00:00
version = "2.1.1"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-08 20:17:38 +00:00
checksum = "2af1a24f391a5a94d756db5092c6576aad494b88a71a5a36b20c67b63e0df034"
2019-01-12 14:39:20 +00:00
dependencies = [
"cfg-if 0.1.10",
"js-sys",
"log",
"serde",
"serde_derive",
"serde_json",
"wasm-bindgen",
"web-sys",
2019-01-12 14:39:20 +00:00
]
2020-11-28 11:48:37 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-01-12 14:39:20 +00:00
[[package]]
name = "fs2"
version = "0.4.3"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
2019-01-12 14:39:20 +00:00
dependencies = [
"libc",
"winapi",
2019-01-12 14:39:20 +00:00
]
2018-09-01 09:44:13 +01:00
[[package]]
2019-09-01 17:30:45 +01:00
name = "fuchsia-cprng"
version = "0.1.1"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2018-09-01 09:44:13 +01:00
2018-09-02 11:13:37 +01:00
[[package]]
name = "gcc"
2018-12-20 16:47:28 +00:00
version = "0.3.55"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
2018-09-02 11:13:37 +01:00
[[package]]
name = "generic-array"
2020-11-07 10:40:32 +00:00
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
2020-11-07 10:40:32 +00:00
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2021-01-16 09:25:40 +00:00
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
2021-01-16 09:25:40 +00:00
"cfg-if 1.0.0",
2020-11-07 10:40:32 +00:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
2020-12-25 16:29:00 +00:00
[[package]]
name = "getrandom"
2021-01-16 09:25:40 +00:00
version = "0.2.1"
2020-12-25 16:29:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "4060f4657be78b8e766215b02b18a2e862d83745545de804638e2b545e81aee6"
2020-12-25 16:29:00 +00:00
dependencies = [
2021-01-16 09:25:40 +00:00
"cfg-if 1.0.0",
2020-12-25 16:29:00 +00:00
"libc",
2021-01-16 09:25:40 +00:00
"wasi 0.10.1+wasi-snapshot-preview1",
2020-12-25 16:29:00 +00:00
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2019-09-07 09:01:30 +01:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "half"
version = "1.6.0"
2019-09-07 09:01:30 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177"
2019-09-07 09:01:30 +01:00
[[package]]
name = "hermit-abi"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
dependencies = [
"libc",
]
[[package]]
2020-11-07 10:40:32 +00:00
name = "hex"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
[[package]]
name = "itoa"
2021-01-16 09:25:40 +00:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
[[package]]
name = "js-sys"
2021-01-16 09:25:40 +00:00
version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-09-01 09:44:13 +01:00
[[package]]
name = "libc"
2021-01-16 09:25:40 +00:00
version = "0.2.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929"
[[package]]
name = "log"
2021-01-16 09:25:40 +00:00
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "fcf3805d4480bb5b86070dcfeb9e2cb2ebc148adb753c5cca5f884d1d65a42b2"
dependencies = [
"cfg-if 0.1.10",
]
[[package]]
name = "memoffset"
2021-01-16 09:25:40 +00:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
dependencies = [
"autocfg",
]
[[package]]
name = "nix"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
dependencies = [
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
2021-01-16 09:25:40 +00:00
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2"
dependencies = [
"bitflags",
"cc",
2021-01-16 09:25:40 +00:00
"cfg-if 1.0.0",
"libc",
]
2020-11-28 11:48:37 +00:00
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
2019-01-12 14:39:20 +00:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "opaque-debug"
version = "0.3.0"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2019-01-12 14:39:20 +00:00
2019-09-01 20:10:00 +01:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "ppv-lite86"
version = "0.2.10"
2019-09-01 20:10:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2019-09-01 20:10:00 +01:00
2019-01-12 14:39:20 +00:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "proc-macro2"
version = "1.0.24"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2019-01-12 14:39:20 +00:00
dependencies = [
2020-11-08 20:17:38 +00:00
"unicode-xid",
2019-01-12 14:39:20 +00:00
]
2020-11-28 11:48:37 +00:00
[[package]]
name = "proptest"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12e6c80c1139113c28ee4670dc50cc42915228b51f56a9e407f0ec60f966646f"
dependencies = [
"bit-set",
"bitflags",
"byteorder",
"lazy_static",
"num-traits",
"quick-error",
"rand 0.7.3",
2020-12-25 16:29:00 +00:00
"rand_chacha 0.2.2",
2020-11-28 11:48:37 +00:00
"rand_xorshift",
"regex-syntax",
"rusty-fork",
"tempfile",
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2019-09-01 20:10:00 +01:00
[[package]]
name = "quote"
2021-01-16 09:25:40 +00:00
version = "1.0.8"
2019-09-01 20:10:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df"
2019-09-01 20:10:00 +01:00
dependencies = [
2020-11-08 20:17:38 +00:00
"proc-macro2",
2019-09-01 20:10:00 +01:00
]
2018-09-02 11:13:37 +01:00
[[package]]
name = "rand"
2019-09-01 17:30:45 +01:00
version = "0.3.23"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"libc",
"rand 0.4.6",
2018-09-02 11:13:37 +01:00
]
[[package]]
name = "rand"
2019-09-01 17:30:45 +01:00
version = "0.4.6"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi",
2018-09-02 11:13:37 +01:00
]
2018-09-01 09:44:13 +01:00
[[package]]
name = "rand"
2020-11-07 10:40:32 +00:00
version = "0.7.3"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2018-09-01 09:44:13 +01:00
dependencies = [
2021-01-16 09:25:40 +00:00
"getrandom 0.1.16",
2020-11-07 10:40:32 +00:00
"libc",
2020-12-25 16:29:00 +00:00
"rand_chacha 0.2.2",
2020-11-07 10:40:32 +00:00
"rand_core 0.5.1",
2020-12-25 16:29:00 +00:00
"rand_hc 0.2.0",
]
[[package]]
name = "rand"
2021-01-16 09:25:40 +00:00
version = "0.8.2"
2020-12-25 16:29:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "18519b42a40024d661e1714153e9ad0c3de27cd495760ceb09710920f1098b1e"
2020-12-25 16:29:00 +00:00
dependencies = [
"libc",
"rand_chacha 0.3.0",
2021-01-16 09:25:40 +00:00
"rand_core 0.6.1",
2020-12-25 16:29:00 +00:00
"rand_hc 0.3.0",
2018-12-20 16:47:28 +00:00
]
[[package]]
name = "rand_chacha"
2020-11-07 10:40:32 +00:00
version = "0.2.2"
2018-12-20 16:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2018-12-20 16:47:28 +00:00
dependencies = [
2020-11-07 10:40:32 +00:00
"ppv-lite86",
"rand_core 0.5.1",
2018-09-01 09:44:13 +01:00
]
2020-12-25 16:29:00 +00:00
[[package]]
name = "rand_chacha"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
dependencies = [
"ppv-lite86",
2021-01-16 09:25:40 +00:00
"rand_core 0.6.1",
2020-12-25 16:29:00 +00:00
]
2019-09-01 17:30:45 +01:00
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2019-09-01 17:30:45 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"rand_core 0.4.2",
2019-09-01 17:30:45 +01:00
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2019-09-01 17:30:45 +01:00
2018-09-01 09:44:13 +01:00
[[package]]
name = "rand_core"
version = "0.5.1"
2018-12-20 16:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2018-12-20 16:47:28 +00:00
dependencies = [
2021-01-16 09:25:40 +00:00
"getrandom 0.1.16",
2020-12-25 16:29:00 +00:00
]
[[package]]
name = "rand_core"
2021-01-16 09:25:40 +00:00
version = "0.6.1"
2020-12-25 16:29:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5"
2020-12-25 16:29:00 +00:00
dependencies = [
2021-01-16 09:25:40 +00:00
"getrandom 0.2.1",
2018-12-20 16:47:28 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
2018-12-20 16:47:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2018-12-20 16:47:28 +00:00
dependencies = [
2020-11-07 10:40:32 +00:00
"rand_core 0.5.1",
2018-12-20 16:47:28 +00:00
]
2018-09-01 09:44:13 +01:00
2020-12-25 16:29:00 +00:00
[[package]]
name = "rand_hc"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
dependencies = [
2021-01-16 09:25:40 +00:00
"rand_core 0.6.1",
2020-12-25 16:29:00 +00:00
]
2020-11-28 11:48:37 +00:00
[[package]]
name = "rand_xorshift"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8"
dependencies = [
"rand_core 0.5.1",
]
[[package]]
name = "rayon"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"lazy_static",
"num_cpus",
]
2019-09-01 17:30:45 +01:00
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2019-09-01 17:30:45 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"rand_core 0.3.1",
2019-09-01 17:30:45 +01:00
]
2018-09-01 09:44:13 +01:00
[[package]]
name = "redox_syscall"
2021-01-16 09:25:40 +00:00
version = "0.2.4"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "05ec8ca9416c5ea37062b502703cd7fcb207736bc294f6e0cf367ac6fc234570"
dependencies = [
"bitflags",
]
2018-09-01 09:44:13 +01:00
2020-11-28 11:48:37 +00:00
[[package]]
name = "regex-syntax"
2021-01-16 09:25:40 +00:00
version = "0.6.22"
2020-11-28 11:48:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
2020-11-28 11:48:37 +00:00
2018-09-01 09:44:13 +01:00
[[package]]
name = "remove_dir_all"
2020-11-07 10:40:32 +00:00
version = "0.5.3"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2018-09-01 09:44:13 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"winapi",
2018-09-01 09:44:13 +01:00
]
2018-09-02 11:13:37 +01:00
[[package]]
name = "rust-crypto"
version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"gcc",
"libc",
"rand 0.3.23",
"rustc-serialize",
"time",
2018-09-02 11:13:37 +01:00
]
[[package]]
name = "rustc-serialize"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
2018-09-02 11:13:37 +01:00
2020-11-28 11:48:37 +00:00
[[package]]
name = "rusty-fork"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
dependencies = [
"fnv",
"quick-error",
"tempfile",
"wait-timeout",
]
[[package]]
name = "ryu"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2018-09-02 11:13:37 +01:00
[[package]]
name = "same-file"
2020-11-07 10:40:32 +00:00
version = "1.0.6"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"winapi-util",
2018-09-02 11:13:37 +01:00
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-09-01 20:10:00 +01:00
[[package]]
name = "serde"
2021-01-16 09:25:40 +00:00
version = "1.0.119"
2019-09-01 20:10:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "9bdd36f49e35b61d49efd8aa7fc068fd295961fd2286d0b2ee9a4c7a14e99cc3"
2019-09-01 20:10:00 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"serde_derive",
2019-09-01 20:10:00 +01:00
]
2019-09-01 21:19:40 +01:00
[[package]]
name = "serde_cbor"
2020-11-07 10:40:32 +00:00
version = "0.11.1"
2019-09-01 21:19:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "1e18acfa2f90e8b735b2836ab8d538de304cbb6729a7360729ea5a895d15a622"
2019-09-01 21:19:40 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"half",
"serde",
2019-09-01 21:19:40 +01:00
]
2019-09-01 20:10:00 +01:00
[[package]]
name = "serde_derive"
2021-01-16 09:25:40 +00:00
version = "1.0.119"
2019-09-01 20:10:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "552954ce79a059ddd5fd68c271592374bd15cab2274970380c000118aeffe1cd"
2019-09-01 20:10:00 +01:00
dependencies = [
2020-11-08 20:17:38 +00:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2021-01-16 09:25:40 +00:00
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a"
dependencies = [
"itoa",
"ryu",
"serde",
2019-09-01 20:10:00 +01:00
]
[[package]]
name = "sha2"
2020-11-07 10:40:32 +00:00
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
dependencies = [
2020-11-07 10:40:32 +00:00
"block-buffer",
"cfg-if 1.0.0",
"cpuid-bool",
"digest",
"opaque-debug",
]
2019-01-12 14:39:20 +00:00
[[package]]
name = "syn"
2021-01-16 09:25:40 +00:00
version = "1.0.58"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "cc60a3d73ea6594cd712d830cc1f0390fd71542d8c8cd24e70cc54cdfd5e05d5"
2019-01-12 14:39:20 +00:00
dependencies = [
2020-11-08 20:17:38 +00:00
"proc-macro2",
"quote",
"unicode-xid",
2019-09-01 20:10:00 +01:00
]
2019-01-12 14:39:20 +00:00
[[package]]
name = "tempdir"
version = "0.3.7"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
2019-01-12 14:39:20 +00:00
dependencies = [
"rand 0.4.6",
"remove_dir_all",
2019-01-12 14:39:20 +00:00
]
2018-09-01 09:44:13 +01:00
[[package]]
name = "tempfile"
2021-01-16 09:25:40 +00:00
version = "3.2.0"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2018-09-01 09:44:13 +01:00
dependencies = [
2021-01-16 09:25:40 +00:00
"cfg-if 1.0.0",
2020-11-07 10:40:32 +00:00
"libc",
2021-01-16 09:25:40 +00:00
"rand 0.8.2",
2020-11-07 10:40:32 +00:00
"redox_syscall",
"remove_dir_all",
"winapi",
2018-09-01 09:44:13 +01:00
]
[[package]]
name = "thiserror"
2021-01-16 09:25:40 +00:00
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-01-16 09:25:40 +00:00
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1"
dependencies = [
2020-11-08 20:17:38 +00:00
"proc-macro2",
"quote",
"syn",
]
2018-09-02 11:13:37 +01:00
[[package]]
name = "time"
2021-01-16 09:25:40 +00:00
version = "0.1.43"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"libc",
"winapi",
2018-09-02 11:13:37 +01:00
]
[[package]]
name = "two-rusty-forks"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21ad7c05d9d393a945f0320da5bc22906e58b90f1f5ac0163f92778a4f4dbbe6"
dependencies = [
"fnv",
"quick-error",
"tempfile",
"wait-timeout",
]
[[package]]
name = "typenum"
2020-11-07 10:40:32 +00:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
2019-01-12 14:39:20 +00:00
[[package]]
name = "unicode-xid"
2020-11-07 10:40:32 +00:00
version = "0.2.1"
2019-01-12 14:39:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-01-12 14:39:20 +00:00
[[package]]
name = "uuid"
2021-01-16 09:25:40 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2021-01-16 09:25:40 +00:00
"getrandom 0.2.1",
]
2019-09-01 20:10:00 +01:00
[[package]]
2020-11-07 10:40:32 +00:00
name = "version_check"
version = "0.9.2"
2019-09-01 20:10:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2019-09-01 20:10:00 +01:00
2020-12-25 16:29:00 +00:00
[[package]]
name = "vfs"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc382cffc2f8d6f9490b96d42a7408d6aa719c2db86491b8b31780208ac9d86"
dependencies = [
"thiserror",
]
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2020-11-28 11:48:37 +00:00
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2018-09-02 11:13:37 +01:00
[[package]]
name = "walkdir"
2020-11-07 10:40:32 +00:00
version = "2.3.1"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"same-file",
"winapi",
"winapi-util",
2018-09-02 11:13:37 +01:00
]
[[package]]
name = "wasi"
2020-11-07 10:40:32 +00:00
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
2021-01-16 09:25:40 +00:00
version = "0.10.1+wasi-snapshot-preview1"
2020-11-07 10:40:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "93c6c3420963c5c64bca373b25e77acb562081b9bb4dd5bb864187742186cea9"
[[package]]
name = "wasm-bindgen"
2021-01-16 09:25:40 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e"
dependencies = [
2021-01-16 09:25:40 +00:00
"cfg-if 1.0.0",
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-01-16 09:25:40 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62"
dependencies = [
"bumpalo",
"lazy_static",
"log",
2020-11-08 20:17:38 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2021-01-16 09:25:40 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084"
dependencies = [
2020-11-08 20:17:38 +00:00
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-01-16 09:25:40 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549"
dependencies = [
2020-11-08 20:17:38 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-01-16 09:25:40 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158"
[[package]]
name = "web-sys"
2021-01-16 09:25:40 +00:00
version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-16 09:25:40 +00:00
checksum = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2018-09-01 09:44:13 +01:00
[[package]]
name = "winapi"
2020-11-07 10:40:32 +00:00
version = "0.3.9"
2018-09-01 09:44:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-09-01 09:44:13 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-09-01 09:44:13 +01:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-09-01 09:44:13 +01:00
2018-09-02 11:13:37 +01:00
[[package]]
name = "winapi-util"
2020-11-07 10:40:32 +00:00
version = "0.1.5"
2018-09-02 11:13:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-09-02 11:13:37 +01:00
dependencies = [
2020-11-07 10:40:32 +00:00
"winapi",
2018-09-02 11:13:37 +01:00
]
2018-09-01 09:44:13 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 10:40:32 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"