From e00cbffbfa928f4e592c4ba606e05c15f2835b68 Mon Sep 17 00:00:00 2001 From: traxys Date: Mon, 1 Dec 2025 14:04:43 +0100 Subject: [PATCH] Change from 2024 to 2025 --- flake.nix | 2 +- template.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 57e5fcf..8c3b22a 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ ]); RUST_PATH = "${rust}"; RUST_DOC_PATH = "${rust}/share/doc/rust/html/std/index.html"; - AOC_YEAR = "2024"; + AOC_YEAR = "2025"; }; defaultPackage = craneLib.buildPackage { diff --git a/template.rs b/template.rs index 2db6eee..1c1c017 100644 --- a/template.rs +++ b/template.rs @@ -1,6 +1,6 @@ use std::time::Instant; -use aoc_2024::{load, print_res}; +use aoc_2025::{load, print_res}; use bstr::BString; type Parsed = ();