diff options
Diffstat (limited to '2022/Rust/Cargo.toml')
| -rw-r--r-- | 2022/Rust/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/2022/Rust/Cargo.toml b/2022/Rust/Cargo.toml new file mode 100644 index 0000000..90ae026 --- /dev/null +++ b/2022/Rust/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "Rust" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] + + +[[bin]] +name = "day1" +path = "src/day1.rs" + +[[bin]] +name = "day2" +path = "src/day2.rs" + +[[bin]] +name = "day3" +path = "src/day3.rs" + +[[bin]] +name = "day4" +path = "src/day4.rs" |
