advent-of-code/Cargo.toml

31 lines
624 B
TOML
Raw Normal View History

2021-12-29 14:12:01 +01:00
[package]
name = "advent_of_code"
2023-12-22 13:11:38 +01:00
version = "0.11.0"
2021-12-29 14:12:01 +01:00
authors = ["Felix Spöttel <1682504+fspoettel@users.noreply.github.com>"]
edition = "2021"
default-run = "advent_of_code"
2022-11-29 11:40:59 +01:00
publish = false
2021-12-29 14:12:01 +01:00
2023-12-07 15:22:16 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-10-21 21:08:46 +02:00
[lib]
doctest = false
2023-12-09 14:43:37 +01:00
[profile.dhat]
inherits = "release"
debug = 1
2023-10-21 21:08:46 +02:00
[features]
dhat-heap = ["dhat"]
2023-12-09 14:43:37 +01:00
today = ["chrono"]
2023-10-21 21:08:46 +02:00
test_lib = []
2021-12-29 14:12:01 +01:00
[dependencies]
2023-12-11 11:28:51 +01:00
# Template dependencies
2024-10-31 23:10:19 +01:00
chrono = { version = "0.4.38", optional = true }
dhat = { version = "0.3.3", optional = true }
pico-args = "0.5.0"
2023-12-11 11:28:51 +01:00
tinyjson = "2.5.1"
# Solution dependencies