From 68d4f601a93c5f870d61e9e87fc080d943b9907a Mon Sep 17 00:00:00 2001 From: Dylan Thies Date: Fri, 29 Dec 2023 14:49:35 -0500 Subject: [PATCH] adding workspace template for next years based on 2023 --- template/year-n/Cargo.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 template/year-n/Cargo.toml diff --git a/template/year-n/Cargo.toml b/template/year-n/Cargo.toml new file mode 100644 index 0000000..534c47a --- /dev/null +++ b/template/year-n/Cargo.toml @@ -0,0 +1,31 @@ +[workspace] +resolver = "2" +members = [ "day-*" ] + +[workspace.package] +version = "{{project-name}}.0.0" +edition = "2021" +authors = [ "Dylan Thies" ] +repository = "https://github.com/smellyfis/AOC.git" + +[workspace.dependencies] +derive-getters = "0.3.0" +error-stack = "0.4.1" +itertools = "0.12.0" +log = "0.4.20" +nom = "7.1.3" +nom_locate= "4.2.0" +rstest = "0.18.2" +rstest_reuse = "0.6.0" +dhat = "0.3.2" +glam = "0.24.2" +petgraph = "0.6.4" +num = "0.4.1" +num-traits = "0.2.17" +rustworkx-core = "0.13.2" +pathfinding = "4.8.0" + + +[profile.dhat] +inherits = "release" +debug = true