aoc-template/Cargo.toml

23 lines
521 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"
version = "24.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]
2022-11-28 21:59:26 +01:00
dotenv = "0.15.0"
2022-12-25 12:00:28 +01:00
elves = "0.2.0"
hashbrown = "0.13.1"
hex-literal = "0.3.4"
2022-11-28 21:59:48 +01:00
itertools = "0.10.5"
lazy_static = "1.4.0"
2022-11-28 19:06:17 +01:00
pico-args = "0.5.0"
regex = "1.7.0"
reqwest = "0.11.13"
tokio = { version = "1.23.0", features = ["full"] }