We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b23b521 commit a9ec604Copy full SHA for a9ec604
day13/Cargo.toml
@@ -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