2024-11-29 00:19:36 +01:00
|
|
|
[workspace.package]
|
|
|
|
description = "template for advent of code"
|
|
|
|
readme = "README.md"
|
|
|
|
version = "48.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
|
|
|
|
repository = "https://git.janezic.dev/janezicmatej/aoc-template.git"
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = ["utils/download", "utils/scaffold"]
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "aoc"
|
|
|
|
description.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-01 22:49:26 +01:00
|
|
|
hashbrown = "0.15.2"
|
|
|
|
itertools = "0.13.0"
|
|
|
|
num-integer = "0.1.46"
|
|
|
|
regex = "1.11.1"
|
2024-11-29 00:19:36 +01:00
|
|
|
|