summaryrefslogtreecommitdiff
path: root/2023/Rust/Cargo.toml
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-12-05 21:55:59 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-12-05 21:55:59 +0200
commit7c1b2efbf483e9a8dbf0c124e9e53e8ac7b05587 (patch)
treef55570c6461350f88d18e729a36e6ab0626099bc /2023/Rust/Cargo.toml
parent02e2e9efee30055cab27a5a709e1e2d087e68fed (diff)
downloadaoc-7c1b2efbf483e9a8dbf0c124e9e53e8ac7b05587.tar.xz
aoc-7c1b2efbf483e9a8dbf0c124e9e53e8ac7b05587.zip
Finished part2 with rayon with brute force solution
Diffstat (limited to '2023/Rust/Cargo.toml')
-rw-r--r--2023/Rust/Cargo.toml7
1 files changed, 3 insertions, 4 deletions
diff --git a/2023/Rust/Cargo.toml b/2023/Rust/Cargo.toml
index 0f912fe..5595980 100644
--- a/2023/Rust/Cargo.toml
+++ b/2023/Rust/Cargo.toml
@@ -3,10 +3,6 @@ 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"
@@ -76,4 +72,7 @@ path = "src/day16.rs"
name = "day17"
path = "src/day17.rs"
+[dependencies]
+rayon = "1.8.0"
+