aoc-template/Cargo.toml

21 lines
490 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-18 20:08:29 +01:00
version = "28.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
[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 = { version = "0.11.22", features = ["blocking"] }