From 27072713062deb0cd029579c07e1989bffd562de Mon Sep 17 00:00:00 2001 From: Tobias Marschner Date: Sat, 21 Sep 2024 16:15:58 +0200 Subject: [PATCH] Update default dependencies in aoc_template Now includes `rayon`, `itertools` and `id_arena`, as these crates have proven very useful when writing any kind of Rust. --- 2022/aoc_template/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/2022/aoc_template/Cargo.toml b/2022/aoc_template/Cargo.toml index 580877c..14d995e 100644 --- a/2022/aoc_template/Cargo.toml +++ b/2022/aoc_template/Cargo.toml @@ -6,3 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +rayon = "1" +itertools = "0" +id-arena = { version = "2", features = ["rayon"] }