Initial commit

This commit is contained in:
2023-01-24 15:30:14 +01:00
commit 000000000a
15 changed files with 1693 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "aoc"
description = "solutions for advent of code 2016"
readme = "README.md"
version = "24.0.0"
edition = "2021"
license = "MIT"
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
repository = "https://github.com/janezicmatej/aoc-template.git"
default-run = "aoc"
[dependencies]
dotenv = "0.15.0"
elves = "0.2.0"
hashbrown = "0.13.1"
hex-literal = "0.3.4"
itertools = "0.10.5"
lazy_static = "1.4.0"
pico-args = "0.5.0"
regex = "1.7.0"
reqwest = "0.11.13"
tokio = { version = "1.23.0", features = ["full"] }