diff options
author | Guillermo Ramos | 2024-12-07 12:25:16 +0100 |
---|---|---|
committer | Guillermo Ramos | 2024-12-07 12:37:51 +0100 |
commit | 0b1643c5b5bf85280371fcf2a33d33f7530cfaf7 (patch) | |
tree | 2e9bb1dcb016f3215db7e40f43b0010a4ab35bd1 /2024_rust/Cargo.lock | |
parent | 822fbc0ecd51b1c7da32b31a0ffc23d09a06c7c6 (diff) | |
download | AoC-0b1643c5b5bf85280371fcf2a33d33f7530cfaf7.tar.gz |
2024.7
Diffstat (limited to '2024_rust/Cargo.lock')
-rw-r--r-- | 2024_rust/Cargo.lock | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/2024_rust/Cargo.lock b/2024_rust/Cargo.lock index 3a80814..99398ce 100644 --- a/2024_rust/Cargo.lock +++ b/2024_rust/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aho-corasick" @@ -15,10 +15,26 @@ dependencies = [ name = "aoc2024" version = "0.1.0" dependencies = [ + "itertools", "regex", ] [[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + +[[package]] name = "memchr" version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" |