chore: update wordings/config

This commit is contained in:
Joshua Smallwood 2025-11-29 22:33:48 -06:00
parent 2e93ebff2b
commit 0b2a217bb5
4 changed files with 46 additions and 1 deletions

13
.cargo/config.toml Normal file
View file

@ -0,0 +1,13 @@
[alias]
today = "run --quiet --release --features today -- today"
scaffold = "run --quiet --release -- scaffold"
download = "run --quiet --release -- download"
read = "run --quiet --release -- read"
solve = "run --quiet --release -- solve"
all = "run --quiet --release -- all"
time = "run --quiet --release -- time"
[env]
AOC_YEAR = "2025"

31
.gitignore vendored Normal file
View file

@ -0,0 +1,31 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Added by cargo
/target
# Advent of Code
# @see https://old.reddit.com/r/adventofcode/comments/k99rod/sharing_input_data_were_we_requested_not_to/gf2ukkf/?context=3
data/inputs/*
!data/inputs/.keep
data/puzzles/*
!data/puzzles/.keep
# Dhat
dhat-heap.json
# Benchmarks
data/timings.json

View file

@ -1,6 +1,6 @@
<img src="./.assets/christmas_ferris.png" width="164"> <img src="./.assets/christmas_ferris.png" width="164">
# 🎄 Advent of Code {year} # 🎄 Advent of Code 2025
Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www.rust-lang.org/). Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www.rust-lang.org/).

View file

@ -9,6 +9,7 @@ pkgs.mkShell {
buildInputs = [ buildInputs = [
pkgs.clippy pkgs.clippy
pkgs.rustfmt pkgs.rustfmt
pkgs.aoc-cli
]; ];
} }