chore: update wordings/config
This commit is contained in:
parent
2e93ebff2b
commit
0b2a217bb5
4 changed files with 46 additions and 1 deletions
13
.cargo/config.toml
Normal file
13
.cargo/config.toml
Normal 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
31
.gitignore
vendored
Normal 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
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<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/).
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ pkgs.mkShell {
|
|||
buildInputs = [
|
||||
pkgs.clippy
|
||||
pkgs.rustfmt
|
||||
pkgs.aoc-cli
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue