1
Fork 0
advent-of-code/Cargo.toml

29 lines
673 B
TOML

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "advent-of-code"
description = "Advent of Code solutions in Rust."
repository = "https://git.bauke.xyz/Bauke/advent-of-code"
license="Unlicense"
version = "0.0.0"
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
publish = false
[[bin]]
name = "advent-of-code"
path = "source/main.rs"
[dependencies]
askama = "0.11.1"
clap = { version = "4.0.4", features = ["derive"] }
color-eyre = "0.6.2"
dialoguer = "0.10.2"
derivative = "2.2.0"
emojis = "0.4.0"
itertools = "0.10.5"
pathfinding = "3.0.13"
rand = "0.8.5"
regex = "1.6.0"
ureq = { version = "2.5.0", features = ["cookie", "cookie_store"] }