Compare commits

...

12 Commits

4 changed files with 766 additions and 35 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM rust:latest
# Install Rust nightly toolchain
RUN rustup toolchain install nightly && \
rustup default nightly
# Install cargo-aoc from specific GitHub repository
RUN cargo install --git https://github.com/ggriffiniii/cargo-aoc cargo-aoc
# Set working directory
WORKDIR /workspace

File diff suppressed because it is too large Load Diff

View File

@@ -61,6 +61,12 @@ repositories:
#- year: 2024 #- year: 2024
# url: "https://github.com/user2/aoc-2024" # url: "https://github.com/user2/aoc-2024"
# local_path: "repos/user2-2024" # local_path: "repos/user2-2024"
- name: "akramer"
type: "multi-year" # one repo per year
years:
- year: 2025
url: "https://github.com/akramer/aoc2025"
local_path: "repos/akramer-2025"
# Didn't use cargo aoc # Didn't use cargo aoc
# - name: "akramer" # - name: "akramer"

View File

@@ -1 +1,2 @@
PyYAML>=6.0 PyYAML>=6.0
Flask>=2.0.0