8000 AoC 2022, day 1 · tobiasvl/adventofcode@0462c88 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0462c88

Browse files
committed
AoC 2022, day 1
Attempt a simple Rust workspace
1 parent 2acc1d3 commit 0462c88

File tree

9 files changed

+2348
-1
lines changed

9 files changed

+2348
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
debug/
2+
target/
3+
Cargo.lock

2022/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[workspace]
2+
3+
members = [
4+
"util",
5+
"day01",
6+
]

2022/day01/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "day01"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
util = { path = "../util" }
10+
anyhow = "*"

0 commit comments

Comments
 (0)
0