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

21 lines
445 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]
2022-09-30 12:42:42 +00:00
color-eyre = "0.6.2"
itertools = "0.10.5"
pathfinding = "3.0.13"