advent-of-code/2022/aoc_template/Cargo.toml
Tobias Marschner 2707271306 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.
2024-09-21 16:15:58 +02:00

12 lines
260 B
TOML

[package]
name = "aoc_template"
version = "0.1.0"
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"] }