Skip to content

Commit a9ec604

Browse files
author
José Braga
committed
Day 13
1 parent b23b521 commit a9ec604

File tree

4 files changed

+640
-0
lines changed

4 files changed

+640
-0
lines changed

day13/Cargo.toml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
name = "day13"
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+
aoc = { path = "../aoc/" }
10+
11+
# The core APIs, including the Serialize and Deserialize traits. Always
12+
# required when using Serde. The "derive" feature is only required when
13+
# using #[derive(Serialize, Deserialize)] to make Serde work with structs
14+
# and enums defined in your crate.
15+
serde = { version = "1.0", features = ["derive"] }
16+
17+
# Each data format lives in its own crate; the sample code below uses JSON
18+
# but you may be using a different one.
19+
serde_json = "1.0"

0 commit comments

Comments
 (0)