AdventOfCode2023/Cargo.toml

14 lines
269 B
TOML
Raw Permalink Normal View History

2023-11-30 17:24:15 +00:00
[package]
2023-12-01 06:41:23 +00:00
name = "advent_of_code_2023"
2023-11-30 17:24:15 +00:00
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-05 19:33:10 +00:00
async-trait = "0.1.74"
fancy-regex = "0.12.0"
2023-12-10 23:21:24 +00:00
hashbrown = "0.14.3"
2023-12-05 07:25:39 +00:00
itertools = "0.12.0"
strum = "0.25.0"
strum_macros = "0.25.3"
2023-12-05 19:33:10 +00:00
tokio = {version = "1.34.0", features = ["full"]}