AdventOfCode2025-Rust/Cargo.toml
Drew Haven 5aab5b8616
Some checks failed
Continuous Integration / Continuous Integration (push) Failing after 56s
[day 1] Last commit was just part 1. Part 2 is still WIP
2025-12-11 17:57:16 -08:00

35 lines
702 B
TOML

[package]
name = "advent_of_code"
version = "0.12.0"
authors = ["Felix Spöttel <1682504+fspoettel@users.noreply.github.com>"]
edition = "2024"
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]
# Template dependencies
chrono = { version = "0.4.38", optional = true }
dhat = { version = "0.3.3", optional = true }
env_logger = "0.11.8"
log = "0.4.29"
nom = "8.0.0"
pico-args = "0.5.0"
test-env-helpers = "0.2.2"
tinyjson = "2.5.1"
# Solution dependencies