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

36 lines
788 B
TOML

# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
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"
authors = ["Bauke <me@bauke.xyz>"]
edition = "2021"
publish = false
[[bin]]
name = "advent-of-code"
path = "source/main.rs"
[dependencies]
askama = "0.12.1"
clap = { version = "4.4.11", features = ["derive"] }
color-eyre = "0.6.2"
dialoguer = "0.11.0"
derivative = "2.2.0"
emojis = "0.6.1"
itertools = "0.12.0"
pathfinding = "4.4.0"
rand = "0.8.5"
regex = "1.10.2"
ureq = { version = "2.8.0", features = ["cookie", "cookie_store"] }
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"