aoc-template/Cargo.toml

23 lines
523 B
TOML
Raw Normal View History

2022-11-28 19:06:17 +01:00
[package]
name = "aoc"
description = "template for advent of code"
readme = "README.md"
2023-11-17 15:59:04 +01:00
version = "26.0.0"
2022-11-28 19:06:17 +01:00
edition = "2021"
license = "MIT"
2022-11-28 19:06:17 +01:00
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
repository = "https://github.com/janezicmatej/aoc-template.git"
2022-11-28 19:06:17 +01:00
default-run = "aoc"
[dependencies]
2023-01-31 19:54:16 +01:00
dotenvy = "0.15.6"
2022-12-25 12:00:28 +01:00
elves = "0.2.0"
2023-11-17 15:59:04 +01:00
hashbrown = "0.14.2"
hex-literal = "0.4.1"
itertools = "0.12.0"
lazy_static = "1.4.0"
2022-11-28 19:06:17 +01:00
pico-args = "0.5.0"
2023-11-17 15:59:04 +01:00
regex = "1.10.2"
reqwest = "0.11.22"
tokio = { version = "1.34.0", features = ["full"] }