33 lines
660 B
TOML
33 lines
660 B
TOML
[package]
|
|
name = "advent_of_code"
|
|
version = "0.11.0"
|
|
authors = ["Andrew Coleman <penguincoder@gmail.com>"]
|
|
edition = "2021"
|
|
default-run = "advent_of_code"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
doctest = false
|
|
|
|
[profile.dhat]
|
|
inherits = "release"
|
|
debug = 1
|
|
|
|
[features]
|
|
dhat-heap = ["dhat"]
|
|
today = ["chrono"]
|
|
test_lib = []
|
|
|
|
[dependencies]
|
|
aoc-parse = "0.2.18"
|
|
|
|
# Template dependencies
|
|
chrono = { version = "0.4.31", optional = true }
|
|
dhat = { version = "0.3.2", optional = true }
|
|
|
|
# Solution dependencies
|
|
num = "0.4.1"
|
|
pathfinding = "4.8.2"
|
|
pico-args = "0.5.0"
|
|
tinyjson = "2.5.1" |