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

34 lines
661 B
TOML
Raw Normal View History

2023-12-04 11:43:33 -05:00
[package]
2024-02-09 16:47:40 -05:00
name = "advent_of_code"
version = "0.11.0"
authors = ["Andrew Coleman <penguincoder@gmail.com>"]
2023-12-04 11:43:33 -05:00
edition = "2021"
2024-02-09 16:47:40 -05:00
default-run = "advent_of_code"
publish = false
2023-12-04 11:43:33 -05:00
2024-02-09 16:47:40 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-12-04 11:43:33 -05:00
[lib]
2024-02-09 16:47:40 -05:00
doctest = false
[profile.dhat]
inherits = "release"
debug = 1
[features]
dhat-heap = ["dhat"]
today = ["chrono"]
test_lib = []
2023-12-04 11:43:33 -05:00
[dependencies]
2024-02-09 16:47:40 -05:00
aoc-parse = "0.2.18"
# Template dependencies
chrono = { version = "0.4.31", optional = true }
dhat = { version = "0.3.2", optional = true }
num = "0.4.1"
pathfinding = "4.8.2"
pico-args = "0.5.0"
tinyjson = "2.5.1"
2023-12-14 15:12:20 -05:00
2024-02-09 16:47:40 -05:00
# Solution dependencies