2022-11-28 19:06:17 +01:00
|
|
|
[package]
|
|
|
|
name = "aoc"
|
2023-11-20 15:44:14 +01:00
|
|
|
description.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# many cool stuff for iterators
|
|
|
|
itertools = "0.12.0"
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
|
|
|
|
members = ["utils/download", "utils/scaffold"]
|
|
|
|
|
|
|
|
[workspace.package]
|
2022-12-31 19:29:50 +01:00
|
|
|
description = "template for advent of code"
|
|
|
|
readme = "README.md"
|
2023-11-23 00:03:21 +01:00
|
|
|
version = "38.0.0"
|
2022-11-28 19:06:17 +01:00
|
|
|
edition = "2021"
|
2022-12-31 19:29:50 +01:00
|
|
|
license = "MIT"
|
2022-11-28 19:06:17 +01:00
|
|
|
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
|
2022-12-31 19:29:50 +01:00
|
|
|
repository = "https://github.com/janezicmatej/aoc-template.git"
|
2022-11-28 19:06:17 +01:00
|
|
|
|