mirror of
https://github.com/LeMoonStar/AoC24.git
synced 2025-07-07 11:25:32 +02:00
21 lines
490 B
TOML
21 lines
490 B
TOML
[package]
|
|
name = "aoc24"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "2.34", features = ["suggestions", "color", "wrap_help"] }
|
|
colored = "2.0"
|
|
aoc-macro = {path="aoc-macro"}
|
|
reqwest = { version = "0.11", features=["cookies", "blocking"] }
|
|
mut_static="5.0"
|
|
lazy_static="1.4"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
strip = true
|