diff options
| author | omagdy <omar.professional8777@gmail.com> | 2024-12-02 19:30:22 +0200 |
|---|---|---|
| committer | omagdy <omar.professional8777@gmail.com> | 2024-12-02 19:30:22 +0200 |
| commit | 3afbdd0736fc965f2c6ee7016005d1760965a448 (patch) | |
| tree | 20db7d507e0d03d7073b6cf3657736367bb66368 /2024/Rust/Cargo.lock | |
| parent | 4deecf57c602155a550521b23587851b54d12f25 (diff) | |
| download | aoc-3afbdd0736fc965f2c6ee7016005d1760965a448.tar.xz aoc-3afbdd0736fc965f2c6ee7016005d1760965a448.zip | |
Day 2 done.
Diffstat (limited to '2024/Rust/Cargo.lock')
| -rw-r--r-- | 2024/Rust/Cargo.lock | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/2024/Rust/Cargo.lock b/2024/Rust/Cargo.lock new file mode 100644 index 0000000..e3209a4 --- /dev/null +++ b/2024/Rust/Cargo.lock @@ -0,0 +1,25 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "Rust" +version = "0.1.0" +dependencies = [ + "itertools", +] + +[[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", +] |
