-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 963 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Cargo manifest file for Rust 🦀 solutions.
# @see https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "advent-of-code-rust"
version = "0.1.0"
authors = ["Balint Toth"]
edition = "2024"
rust-version = "1.85"
description = "Advent of Code puzzle solutions in Rust by TBali"
homepage = "https://adventofcode.com/"
repository = "https://github.com/tbali0524/advent-of-code-rust/"
license = "MIT"
keywords = ["aoc", "algorithms"]
[lib]
path = "src/lib.rs"
name = "aoc"
[[bin]]
path = "src/main.rs"
name = "aoc"
[dependencies]
indicatif = {version = "*", features = ["rayon"]} # used by run_puzzles()
md5 = "0.7" # used by aoc2015day04, aoc2016day05
num-bigint = "0.4" # used by aoc2023day24
priority-queue = "2.1" # used by aoc2023day17, aoc2023day20, aoc2024day16
rayon = "1.10" # used by run_puzzles()
regex = "1.10" # used by aoc2017day20, aoc2023day19
serde_json = "1" # used by aoc2015day12