-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrej Orsula <orsula.andrej@gmail.com>
- Loading branch information
1 parent
d29defd
commit 3eba724
Showing
8 changed files
with
150 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG RUST_VERSION=latest | ||
ARG RUST_VERSION=1.82 | ||
FROM rust:${RUST_VERSION} | ||
|
||
### Use bash as the default shell | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[package] | ||
name = "aoc2024" | ||
description = "Advent of Code 2024" | ||
edition = "2021" | ||
rust-version = "1.82" | ||
version = "0.1.0" | ||
authors.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
publish = false | ||
|
||
[dependencies] | ||
aoc-runner = { workspace = true } | ||
aoc-runner-derive = { workspace = true } | ||
indoc = { workspace = true } | ||
|
||
derive_more = { version = "1", features = ["full"] } | ||
itertools = { version = "0.13" } | ||
num = { version = "0.4" } | ||
num-integer = { version = "0.1" } | ||
pathfinding = { version = "4.4" } | ||
petgraph = { version = "0.6" } | ||
rayon = { version = "1.8" } | ||
rustc-hash = { version = "2.0" } | ||
rustworkx-core = { version = "0.15" } | ||
smallvec = { version = "1.11" } | ||
strum = { version = "0.26", features = ["derive"] } | ||
|
||
[features] | ||
default = [] | ||
|
||
[lib] | ||
bench = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// pub mod day1; | ||
// pub mod day2; | ||
// pub mod day3; | ||
// pub mod day4; | ||
// pub mod day5; | ||
// pub mod day6; | ||
// pub mod day7; | ||
// pub mod day8; | ||
// pub mod day9; | ||
|
||
// pub mod day10; | ||
// pub mod day11; | ||
// pub mod day12; | ||
// pub mod day13; | ||
// pub mod day14; | ||
// pub mod day15; | ||
// pub mod day16; | ||
// pub mod day17; | ||
// pub mod day18; | ||
// pub mod day19; | ||
|
||
// pub mod day20; | ||
// pub mod day21; | ||
// pub mod day22; | ||
// pub mod day23; | ||
// pub mod day24; | ||
// pub mod day25; | ||
|
||
aoc_runner_derive::aoc_lib! { year = 2024 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
aoc_runner_derive::aoc_main! { lib = aoc2024 } |