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.
This commit is contained in:
Tobias Marschner 2024-09-21 16:15:58 +02:00
parent b9e2079de2
commit 2707271306

View File

@ -6,3 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
rayon = "1"
itertools = "0"
id-arena = { version = "2", features = ["rayon"] }