1
1
mirror of https://github.com/theoludwig/advent_of_code_2023.git synced 2024-07-17 07:20:11 +02:00
advent_of_code_2023/Cargo.toml

15 lines
307 B
TOML
Raw Normal View History

2023-12-01 17:26:01 +01:00
[workspace]
2023-12-10 03:22:34 +01:00
members = ["day_*"]
2023-12-01 17:26:01 +01:00
resolver = "2"
2023-12-09 20:22:46 +01:00
[workspace.package]
name = "advent_of_code_2023"
version = "1.0.0"
edition = "2021"
rust-version = "1.70.0"
2023-12-09 20:22:46 +01:00
[workspace.dependencies]
rayon = { version = "=1.8.1" }
2023-12-09 20:22:46 +01:00
indicatif = { version = "=0.17.7", features = ["rayon"] }
2023-12-10 03:22:34 +01:00
array-init = { version = "=2.1.0" }