advent-of-code/Cargo.toml

24 lines
486 B
TOML
Raw Normal View History

2021-12-29 14:12:01 +01:00
[package]
name = "advent_of_code"
2023-12-06 10:43:27 +01:00
version = "0.9.4"
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
[features]
test_lib = []
2023-12-07 15:22:16 -05:00
dhat-heap = ["dhat"]
2023-10-21 21:08:46 +02:00
2021-12-29 14:12:01 +01:00
[dependencies]
pico-args = "0.5.0"
2023-12-07 15:22:16 -05:00
dhat = { version = "0.3.2", optional = true }
[profile.dhat]
inherits = "release"
debug = 1