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]
|
2023-12-07 14:17:54 +00:00
|
|
|
askama = "0.12.1"
|
|
|
|
clap = { version = "4.4.11", features = ["derive"] }
|
2022-09-30 12:42:42 +00:00
|
|
|
color-eyre = "0.6.2"
|
2023-12-07 14:17:54 +00:00
|
|
|
dialoguer = "0.11.0"
|
2022-10-02 20:20:09 +00:00
|
|
|
derivative = "2.2.0"
|
2023-12-07 14:17:54 +00:00
|
|
|
emojis = "0.6.1"
|
|
|
|
itertools = "0.12.0"
|
|
|
|
pathfinding = "4.4.0"
|
2022-10-02 20:20:09 +00:00
|
|
|
rand = "0.8.5"
|
2023-12-07 14:17:54 +00:00
|
|
|
regex = "1.10.2"
|
|
|
|
ureq = { version = "2.8.0", features = ["cookie", "cookie_store"] }
|