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

29 lines
673 B
TOML
Raw Normal View History

2021-12-01 11:50:38 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
2022-09-30 12:42:42 +00:00
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"
2021-12-01 11:50:38 +00:00
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
2022-09-30 12:42:42 +00:00
publish = false
2021-12-01 11:50:38 +00:00
[[bin]]
2022-09-30 12:42:42 +00:00
name = "advent-of-code"
2021-12-01 11:50:38 +00:00
path = "source/main.rs"
[dependencies]
askama = "0.11.1"
clap = { version = "4.0.4", features = ["derive"] }
2022-09-30 12:42:42 +00:00
color-eyre = "0.6.2"
dialoguer = "0.10.2"
derivative = "2.2.0"
emojis = "0.4.0"
2022-09-30 12:42:42 +00:00
itertools = "0.10.5"
pathfinding = "3.0.13"
rand = "0.8.5"
2022-10-03 15:10:55 +00:00
regex = "1.6.0"
ureq = { version = "2.5.0", features = ["cookie", "cookie_store"] }