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

36 lines
788 B
TOML
Raw Permalink Normal View History

2021-12-01 11:50:38 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
2022-09-30 12:42:42 +00:00
name = "advent-of-code"
description = "Advent of Code solutions in Rust."
repository = "https://git.bauke.xyz/Bauke/advent-of-code"
license="Unlicense"
version = "0.0.0"
2021-12-01 11:50:38 +00:00
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
2022-09-30 12:42:42 +00:00
publish = false
2021-12-01 11:50:38 +00:00
[[bin]]
2022-09-30 12:42:42 +00:00
name = "advent-of-code"
2021-12-01 11:50:38 +00:00
path = "source/main.rs"
[dependencies]
2023-12-07 14:17:54 +00:00
askama = "0.12.1"
clap = { version = "4.4.11", features = ["derive"] }
2022-09-30 12:42:42 +00:00
color-eyre = "0.6.2"
2023-12-07 14:17:54 +00:00
dialoguer = "0.11.0"
derivative = "2.2.0"
2023-12-07 14:17:54 +00:00
emojis = "0.6.1"
itertools = "0.12.0"
pathfinding = "4.4.0"
rand = "0.8.5"
2023-12-07 14:17:54 +00:00
regex = "1.10.2"
ureq = { version = "2.8.0", features = ["cookie", "cookie_store"] }
2023-12-09 14:12:54 +00:00
2024-01-14 21:04:10 +00:00
[lints.clippy]
missing_docs_in_private_items = "warn"
2023-12-09 14:12:54 +00:00
[lints.rust]
2024-01-14 21:04:10 +00:00
missing_docs = "warn"
2023-12-09 14:12:54 +00:00
unsafe_code = "forbid"