aoc2023/Cargo.toml

27 lines
661 B
TOML
Raw Permalink Normal View History

2023-11-29 22:00:59 +01:00
[workspace.package]
description = "advent of code 2023"
readme = "README.md"
version = "46.0.0"
edition = "2021"
license = "MIT"
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
repository = "https://git.janezic.dev/janezicmatej/aoc2023.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]
2023-12-25 05:59:42 +01:00
# so much for no dependencies this year, but I really cba so here it is
z3 = { version = "0.12.1", features = [ "static-link-z3" ] }
2023-11-29 22:00:59 +01:00