advent-of-code/Cargo.lock

921 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"
2021-12-17 18:52:15 +01:00
version = "1.0.51"
2020-12-14 09:52:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203"
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",
"bitvec",
"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
]
2022-12-05 22:57:19 +01:00
[[package]]
name = "aoc2022"
version = "0.1.0"
dependencies = [
"anyhow",
"aoc",
]
[[package]]
name = "aoc2022_bench"
version = "0.1.0"
dependencies = [
"aoc2022",
"criterion",
]
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
2021-12-16 15:50:19 +01:00
[[package]]
name = "bitvec"
2022-12-05 23:04:07 +01:00
version = "1.0.1"
2021-12-16 15:50:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-05 23:04:07 +01:00
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
2021-12-16 15:50:19 +01:00
dependencies = [
"funty",
"radium",
2021-12-16 15:50:19 +01:00
"tap",
"wyz",
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"
2021-12-17 18:52:15 +01:00
version = "0.2.17"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
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"
2021-12-17 18:52:15 +01:00
version = "2.34.0"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
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",
2021-12-17 18:52:15 +01:00
"itertools 0.10.3",
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",
2021-12-17 18:52:15 +01:00
"itertools 0.10.3",
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",
2021-12-17 18:52:15 +01:00
"itoa 0.4.8",
2020-11-18 20:49:33 +01:00
"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"
2022-12-05 23:04:07 +01:00
version = "2.0.0"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-05 23:04:07 +01:00
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
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"
2021-12-17 18:52:15 +01:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
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
2021-12-17 18:52:15 +01:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
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
[[package]]
name = "libc"
2021-12-17 18:52:15 +01:00
version = "0.2.112"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
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"
2021-12-17 18:52:15 +01:00
version = "2.4.1"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2019-12-06 19:07:57 +01:00
[[package]]
name = "memoffset"
2021-12-17 18:52:15 +01:00
version = "0.6.5"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
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 = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2020-12-18 15:22:42 +01:00
[[package]]
name = "nom"
version = "7.1.0"
2020-12-18 15:22:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d11e1ef389c76fe5b81bcaf2ea32cf88b62bc494e19f493d0b30e7a930109"
2020-12-18 15:22:42 +01:00
dependencies = [
"memchr",
"minimal-lexical",
2020-12-18 15:22:42 +01:00
"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"
2021-12-17 18:52:15 +01:00
version = "1.0.34"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "2f84e92c0f7c9d58328b85a78557813e4bd845130db68d7184635344399423b1"
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
]
2021-12-16 15:50:19 +01:00
[[package]]
name = "radium"
2022-12-05 23:04:07 +01:00
version = "0.7.0"
2021-12-16 15:50:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-05 23:04:07 +01:00
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2021-12-16 15:50:19 +01:00
[[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"
2021-12-17 18:52:15 +01:00
version = "1.0.9"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
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"
2021-12-17 18:52:15 +01:00
version = "1.0.132"
2020-11-18 20:49:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "8b9875c23cf305cd1fd7eb77234cbb705f21ea6a72c637a5c6db5fe4b8e7f008"
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"
2021-12-17 18:52:15 +01:00
version = "1.0.132"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "ecc0db5cb2556c0e558887d9bbdcf6ac4471e83ff66cf696e5419024d1606276"
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"
2021-12-17 18:52:15 +01:00
version = "1.0.73"
2019-12-06 19:07:57 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 18:52:15 +01:00
checksum = "bcbd0344bc6533bc7ec56df11d42fb70f1b912351c0825ccb7211b59d8af7cf5"
2019-12-06 19:07:57 +01:00
dependencies = [
2021-12-17 18:52:15 +01:00
"itoa 1.0.1",
2020-11-18 20:49:33 +01:00
"ryu",
"serde",
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
2021-12-16 15:50:19 +01:00
[[package]]
name = "wyz"
2022-12-05 23:04:07 +01:00
version = "0.5.1"
2021-12-16 15:50:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-05 23:04:07 +01:00
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2021-12-16 15:50:19 +01:00
dependencies = [
"tap",
]