Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjray/rust-advent-basis
The basis/template for solving Advent of Code problems in Rust
https://github.com/rjray/rust-advent-basis
advent-of-code rust rust-lang
Last synced: about 1 month ago
JSON representation
The basis/template for solving Advent of Code problems in Rust
- Host: GitHub
- URL: https://github.com/rjray/rust-advent-basis
- Owner: rjray
- License: mit
- Created: 2024-12-01T19:27:55.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-01T20:14:01.000Z (about 1 month ago)
- Last Synced: 2024-12-01T20:30:35.746Z (about 1 month ago)
- Topics: advent-of-code, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-20XX-rust
This is my code for the 20XX [Advent of Code](https://adventofcode.com/20XX),
all solutions in [Rust](https://www.rust-lang.org/).All code is under the `src` directory. Each solution-file is named `dayNN.rs`
and contains both puzzle solutions for that day. These are the
publically-facing functions `part1` and `part2`. Unlike the code I use to
actually do the AoC challenge, this is written well after the fact.## Usage
This project is managed with [Cargo](https://doc.rust-lang.org/cargo/). Running
the following will download any dependencies and build the executable:```
cargo build
```# Advent of Code Rust Basis
Starter pack for doing [Advent of Code](https://www.adventofcode.com) in
Rust. This is based largely on
[this template](https://github.com/nickyvanurk/advent-of-code-rust-template).## Checklist
Once this template is used to create a new repo, do the following:
1. Edit `Cargo.toml` to change `20XX` to the current year
2. Edit `LICENSE` to change `20XX` to the current year
3. Edit this file to change `20XX` to the current year
4. Delete everything from second level-1 header ("Advent of Code Rust Basis")
to the end