advent-of-code/Cargo.lock

943 lines
22 KiB
Plaintext
Raw Normal View History

2019-11-14 17:57:25 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2020-12-14 09:52:13 +01:00
[[package]]
name = "anyhow"
version = "1.0.48"
2020-12-14 09:52:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62e1f47f7dc0422027a4e370dd4548d4d66b26782e513e98dca1e689e058a80e"
2020-12-14 09:52:13 +01:00
2019-12-01 22:22:12 +01:00
[[package]]
name = "aoc"
version = "0.1.0"
2020-12-14 18:08:16 +01:00
dependencies = [
"anyhow",
]
2019-12-01 22:22:12 +01:00
2019-12-01 21:16:15 +01:00
[[package]]
name = "aoc2015"
version = "0.1.0"
2019-12-01 22:22:12 +01:00
dependencies = [
2020-12-14 20:04:47 +01:00
"anyhow",
2020-11-18 20:49:33 +01:00
"aoc",
"md-5",
2019-12-01 22:22:12 +01:00
]
2019-12-01 21:16:15 +01:00
[[package]]
name = "aoc2015_bench"
version = "0.1.0"
dependencies = [
"aoc2015",
"criterion",
]
2019-11-14 17:57:25 +01:00
[[package]]
2019-11-15 00:14:07 +01:00
name = "aoc2018"
2019-11-14 18:19:23 +01:00
version = "0.1.0"
2019-12-01 22:22:12 +01:00
dependencies = [
2020-12-14 20:24:09 +01:00
"anyhow",
2020-11-18 20:49:33 +01:00
"aoc",
]
[[package]]
name = "aoc2018_bench"
version = "0.1.0"
dependencies = [
"aoc2018",
2020-11-18 20:49:33 +01:00
"criterion",
2019-12-01 22:22:12 +01:00
]
2019-11-14 18:19:23 +01:00
2019-12-01 16:03:34 +01:00
[[package]]
name = "aoc2019"
version = "0.1.0"
2019-12-01 22:22:12 +01:00
dependencies = [
2020-12-14 19:24:43 +01:00
"anyhow",
2020-11-18 20:49:33 +01:00
"aoc",
]
[[package]]
name = "aoc2019_bench"
version = "0.1.0"
dependencies = [
"aoc2019",
2020-11-18 20:49:33 +01:00
"criterion",
2019-12-01 22:22:12 +01:00
]
2019-12-01 16:03:34 +01:00
2020-12-01 16:34:25 +01:00
[[package]]
name = "aoc2020"
version = "0.1.0"
dependencies = [
2020-12-14 09:52:13 +01:00
"anyhow",
2020-12-01 16:34:25 +01:00
"aoc",
"itertools 0.9.0",
2020-12-18 15:22:42 +01:00
"nom",
]
[[package]]
name = "aoc2020_bench"
version = "0.1.0"
dependencies = [
"aoc2020",
2020-12-01 16:34:25 +01:00
"criterion",
2021-11-25 16:49:52 +01:00
]
[[package]]
name = "aoc2021"
version = "0.1.0"
dependencies = [
"anyhow",
"aoc",
2021-12-16 15:50:19 +01:00
"bitvec 0.22.3",
"rand",
2021-11-25 16:49:52 +01:00
]
[[package]]
name = "aoc2021_bench"
version = "0.1.0"
dependencies = [
"aoc2021",
"criterion",
2020-12-01 16:34:25 +01:00
]
2020-12-18 15:22:42 +01:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2019-12-06 19:07:57 +01:00
[[package]]
name = "atty"
2020-11-18 20:49:33 +01:00
version = "0.2.14"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"hermit-abi",
"libc",
"winapi",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "autocfg"
2020-11-18 20:49:33 +01:00
version = "1.0.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2019-12-06 19:07:57 +01:00
[[package]]
name = "bitflags"
version = "1.3.2"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-12-06 19:07:57 +01:00
2020-12-18 15:22:42 +01:00
[[package]]
name = "bitvec"
2021-12-16 15:50:19 +01:00
version = "0.19.4"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 15:50:19 +01:00
checksum = "a7ba35e9565969edb811639dbebfe34edc0368e472c5018474c8eb2543397f81"
2020-12-18 15:22:42 +01:00
dependencies = [
"funty",
2021-12-16 15:50:19 +01:00
"radium 0.5.3",
2020-12-18 15:22:42 +01:00
"tap",
2021-12-16 15:50:19 +01:00
"wyz 0.2.0",
]
[[package]]
name = "bitvec"
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5237f00a8c86130a0cc317830e558b966dd7850d48a953d998c813f01a41b527"
dependencies = [
"funty",
"radium 0.6.2",
"tap",
"wyz 0.4.0",
2020-12-18 15:22:42 +01:00
]
2019-12-03 15:06:28 +01:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
2019-12-03 15:06:28 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"block-padding",
"byte-tools",
"byteorder",
"generic-array",
2019-12-03 15:06:28 +01:00
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
2019-12-03 15:06:28 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"byte-tools",
2019-12-03 15:06:28 +01:00
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "bstr"
version = "0.2.15"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"lazy_static",
"memchr",
"regex-automata",
"serde",
2019-12-06 19:07:57 +01:00
]
2020-11-18 20:49:33 +01:00
[[package]]
name = "bumpalo"
version = "3.8.0"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"
2020-11-18 20:49:33 +01:00
2019-12-03 15:06:28 +01:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2019-12-03 15:06:28 +01:00
[[package]]
name = "byteorder"
version = "1.4.3"
2019-12-03 15:06:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2019-12-03 15:06:28 +01:00
2019-12-06 19:07:57 +01:00
[[package]]
name = "cast"
version = "0.2.7"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"rustc_version",
2019-12-06 19:07:57 +01:00
]
2020-11-18 20:49:33 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-12-06 19:07:57 +01:00
[[package]]
name = "clap"
2020-11-18 20:49:33 +01:00
version = "2.33.3"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"bitflags",
"textwrap",
"unicode-width",
2019-12-06 19:07:57 +01:00
]
2020-11-18 20:49:33 +01:00
[[package]]
name = "criterion"
version = "0.3.5"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1604dafd25fba2fe2d5895a9da139f8dc9b319a5fe5354ca137cbbce4e178d10"
2020-11-18 20:49:33 +01:00
dependencies = [
"atty",
"cast",
"clap",
"criterion-plot",
"csv",
"itertools 0.10.1",
2020-11-18 20:49:33 +01:00
"lazy_static",
"num-traits",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"tinytemplate",
"walkdir",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "criterion-plot"
version = "0.4.4"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"cast",
"itertools 0.10.1",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "crossbeam-channel"
version = "0.5.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
2019-12-06 19:07:57 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
"crossbeam-utils",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "crossbeam-deque"
version = "0.8.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2019-12-06 19:07:57 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
"crossbeam-epoch",
"crossbeam-utils",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "crossbeam-epoch"
version = "0.9.5"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
2019-12-06 19:07:57 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
"crossbeam-utils",
"lazy_static",
"memoffset",
"scopeguard",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "crossbeam-utils"
version = "0.8.5"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
2019-12-06 19:07:57 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
"lazy_static",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "csv"
version = "1.1.6"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"bstr",
"csv-core",
"itoa",
"ryu",
"serde",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "csv-core"
2020-11-18 20:49:33 +01:00
version = "0.1.10"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"memchr",
2019-12-06 19:07:57 +01:00
]
2019-12-03 15:06:28 +01:00
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
2019-12-03 15:06:28 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"generic-array",
2019-12-03 15:06:28 +01:00
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "either"
2020-11-18 20:49:33 +01:00
version = "1.6.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2019-12-06 19:07:57 +01:00
2020-12-18 15:22:42 +01:00
[[package]]
name = "funty"
2021-12-16 15:50:19 +01:00
version = "1.2.0"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 15:50:19 +01:00
checksum = "1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e"
2020-12-18 15:22:42 +01:00
2019-12-03 15:06:28 +01:00
[[package]]
name = "generic-array"
version = "0.12.4"
2019-12-03 15:06:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
2019-12-03 15:06:28 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"typenum",
2019-12-03 15:06:28 +01:00
]
[[package]]
name = "getrandom"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "half"
version = "1.8.2"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2019-12-06 19:07:57 +01:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"libc",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "itertools"
2020-11-18 20:49:33 +01:00
version = "0.9.0"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"either",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "itertools"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
dependencies = [
"either",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "itoa"
version = "0.4.8"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-11-18 20:49:33 +01:00
[[package]]
name = "js-sys"
version = "0.3.55"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
2020-11-18 20:49:33 +01:00
dependencies = [
"wasm-bindgen",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-12-06 19:07:57 +01:00
2020-12-18 15:22:42 +01:00
[[package]]
name = "lexical-core"
version = "0.7.6"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
2020-12-18 15:22:42 +01:00
dependencies = [
"arrayvec",
"bitflags",
"cfg-if",
2020-12-18 15:22:42 +01:00
"ryu",
"static_assertions",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "libc"
version = "0.2.108"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119"
2020-11-18 20:49:33 +01:00
[[package]]
name = "log"
version = "0.4.14"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-11-18 20:49:33 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
]
2019-12-06 19:07:57 +01:00
2019-12-03 15:06:28 +01:00
[[package]]
name = "md-5"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "a18af3dcaf2b0219366cdb4e2af65a6101457b415c3d1a5c71dd9c2b7c77b9c8"
2019-12-03 15:06:28 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"block-buffer",
"digest",
"opaque-debug",
2019-12-03 15:06:28 +01:00
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "memchr"
2020-11-18 20:49:33 +01:00
version = "2.3.4"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2019-12-06 19:07:57 +01:00
[[package]]
name = "memoffset"
version = "0.6.4"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"autocfg",
2019-12-06 19:07:57 +01:00
]
2020-12-18 15:22:42 +01:00
[[package]]
name = "nom"
2021-12-16 15:50:19 +01:00
version = "6.1.1"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-16 15:50:19 +01:00
checksum = "3d521ee2250f619dd5e06515ba405858d249edc8fae9ddee2dba0695e57db01b"
2020-12-18 15:22:42 +01:00
dependencies = [
2021-12-16 15:50:19 +01:00
"bitvec 0.19.4",
2020-12-18 15:22:42 +01:00
"lexical-core",
"memchr",
"version_check",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "num-traits"
2020-11-18 20:49:33 +01:00
version = "0.2.14"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"autocfg",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "num_cpus"
2020-11-18 20:49:33 +01:00
version = "1.13.0"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"hermit-abi",
"libc",
2019-12-06 19:07:57 +01:00
]
2020-11-18 20:49:33 +01:00
[[package]]
name = "oorandom"
2020-12-15 00:45:27 +01:00
version = "11.1.3"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-15 00:45:27 +01:00
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
2020-11-18 20:49:33 +01:00
2019-12-03 15:06:28 +01:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2019-12-03 15:06:28 +01:00
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "plotters"
version = "0.3.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"num-traits",
"plotters-backend",
"plotters-svg",
2020-11-18 20:49:33 +01:00
"wasm-bindgen",
"web-sys",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "plotters-backend"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c"
[[package]]
name = "plotters-svg"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9"
dependencies = [
"plotters-backend",
]
[[package]]
name = "ppv-lite86"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "proc-macro2"
version = "1.0.32"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"unicode-xid",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "quote"
version = "1.0.10"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"proc-macro2",
2019-12-06 19:07:57 +01:00
]
2020-12-18 15:22:42 +01:00
[[package]]
name = "radium"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
2021-12-16 15:50:19 +01:00
[[package]]
name = "radium"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb"
[[package]]
name = "rand"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
]
[[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",
]
[[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.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core",
]
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "rayon"
version = "1.5.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "rayon-core"
version = "1.9.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"lazy_static",
"num_cpus",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "regex"
version = "1.5.4"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"regex-syntax",
2019-12-06 19:07:57 +01:00
]
[[package]]
2020-11-18 20:49:33 +01:00
name = "regex-automata"
version = "0.1.10"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "regex-syntax"
version = "0.6.25"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2019-12-06 19:07:57 +01:00
[[package]]
name = "rustc_version"
version = "0.4.0"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"semver",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "ryu"
2020-11-18 20:49:33 +01:00
version = "1.0.5"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2019-12-06 19:07:57 +01:00
[[package]]
name = "same-file"
2020-11-18 20:49:33 +01:00
version = "1.0.6"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"winapi-util",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "scopeguard"
2020-11-18 20:49:33 +01:00
version = "1.1.0"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-12-06 19:07:57 +01:00
[[package]]
name = "semver"
version = "1.0.4"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
2019-12-06 19:07:57 +01:00
[[package]]
name = "serde"
version = "1.0.130"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2020-11-18 20:49:33 +01:00
[[package]]
name = "serde_cbor"
version = "0.11.2"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
2020-11-18 20:49:33 +01:00
dependencies = [
"half",
"serde",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "serde_derive"
version = "1.0.130"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"proc-macro2",
"quote",
"syn",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "serde_json"
version = "1.0.72"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0ffa0837f2dfa6fb90868c2b5468cad482e175f7dad97e7421951e663f2b527"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"itoa",
"ryu",
"serde",
2019-12-06 19:07:57 +01:00
]
2020-12-18 15:22:42 +01:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2019-12-06 19:07:57 +01:00
[[package]]
name = "syn"
version = "1.0.82"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"proc-macro2",
"quote",
"unicode-xid",
2019-12-06 19:07:57 +01:00
]
2020-12-18 15:22:42 +01:00
[[package]]
name = "tap"
version = "1.0.1"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2020-12-18 15:22:42 +01:00
2019-12-06 19:07:57 +01:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"unicode-width",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "tinytemplate"
version = "1.2.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"serde",
"serde_json",
2019-12-06 19:07:57 +01:00
]
2019-12-03 15:06:28 +01:00
[[package]]
name = "typenum"
version = "1.14.0"
2019-12-03 15:06:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
2019-12-03 15:06:28 +01:00
2019-12-06 19:07:57 +01:00
[[package]]
name = "unicode-width"
version = "0.1.9"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-12-06 19:07:57 +01:00
[[package]]
name = "unicode-xid"
version = "0.2.2"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-12-06 19:07:57 +01:00
2020-12-18 15:22:42 +01:00
[[package]]
name = "version_check"
version = "0.9.3"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-12-18 15:22:42 +01:00
2019-12-06 19:07:57 +01:00
[[package]]
name = "walkdir"
version = "2.3.2"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"same-file",
"winapi",
"winapi-util",
2019-12-06 19:07:57 +01:00
]
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2019-12-06 19:07:57 +01:00
[[package]]
2020-11-18 20:49:33 +01:00
name = "wasm-bindgen"
version = "0.2.78"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
2020-11-18 20:49:33 +01:00
dependencies = [
"cfg-if",
2020-11-18 20:49:33 +01:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.78"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
2020-11-18 20:49:33 +01:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.78"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
2020-11-18 20:49:33 +01:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.78"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
2020-11-18 20:49:33 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.78"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
2020-11-18 20:49:33 +01:00
[[package]]
name = "web-sys"
version = "0.3.55"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
2020-11-18 20:49:33 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2019-12-06 19:07:57 +01:00
[[package]]
name = "winapi"
2020-11-18 20:49:33 +01:00
version = "0.3.9"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-12-06 19:07:57 +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-18 20:49:33 +01:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-12-06 19:07:57 +01:00
[[package]]
name = "winapi-util"
2020-11-18 20:49:33 +01:00
version = "0.1.5"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-18 20:49:33 +01:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-12-06 19:07:57 +01:00
dependencies = [
2020-11-18 20:49:33 +01:00
"winapi",
2019-12-06 19:07:57 +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-18 20:49:33 +01:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2020-12-18 15:22:42 +01:00
[[package]]
name = "wyz"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
2021-12-16 15:50:19 +01:00
[[package]]
name = "wyz"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "129e027ad65ce1453680623c3fb5163cbf7107bfe1aa32257e7d0e63f9ced188"
dependencies = [
"tap",
]