129 lines
3.2 KiB
Plaintext
129 lines
3.2 KiB
Plaintext
|
# This file is automatically @generated by Cargo.
|
||
|
# It is not intended for manual editing.
|
||
|
[[package]]
|
||
|
name = "aho-corasick"
|
||
|
version = "0.7.15"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
|
||
|
dependencies = [
|
||
|
"memchr",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "day-7"
|
||
|
version = "0.1.0"
|
||
|
dependencies = [
|
||
|
"indoc",
|
||
|
"lazy_static",
|
||
|
"regex",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "indoc"
|
||
|
version = "0.3.6"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8"
|
||
|
dependencies = [
|
||
|
"indoc-impl",
|
||
|
"proc-macro-hack",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "indoc-impl"
|
||
|
version = "0.3.6"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0"
|
||
|
dependencies = [
|
||
|
"proc-macro-hack",
|
||
|
"proc-macro2",
|
||
|
"quote",
|
||
|
"syn",
|
||
|
"unindent",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "lazy_static"
|
||
|
version = "1.4.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||
|
|
||
|
[[package]]
|
||
|
name = "memchr"
|
||
|
version = "2.3.4"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
|
||
|
|
||
|
[[package]]
|
||
|
name = "proc-macro-hack"
|
||
|
version = "0.5.19"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
|
||
|
|
||
|
[[package]]
|
||
|
name = "proc-macro2"
|
||
|
version = "1.0.24"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
|
||
|
dependencies = [
|
||
|
"unicode-xid",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "quote"
|
||
|
version = "1.0.7"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
|
||
|
dependencies = [
|
||
|
"proc-macro2",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "regex"
|
||
|
version = "1.4.2"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
|
||
|
dependencies = [
|
||
|
"aho-corasick",
|
||
|
"memchr",
|
||
|
"regex-syntax",
|
||
|
"thread_local",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "regex-syntax"
|
||
|
version = "0.6.21"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
|
||
|
|
||
|
[[package]]
|
||
|
name = "syn"
|
||
|
version = "1.0.54"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
|
||
|
dependencies = [
|
||
|
"proc-macro2",
|
||
|
"quote",
|
||
|
"unicode-xid",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "thread_local"
|
||
|
version = "1.0.1"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
|
||
|
dependencies = [
|
||
|
"lazy_static",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "unicode-xid"
|
||
|
version = "0.2.1"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
||
|
|
||
|
[[package]]
|
||
|
name = "unindent"
|
||
|
version = "0.1.7"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7"
|