From b515ca9ce5d2bd7fb91fabdd4f923d7bfc825884 Mon Sep 17 00:00:00 2001 From: Connor Slade Date: Sun, 26 Nov 2023 12:36:24 -0500 Subject: [PATCH] Use nd-vec from git --- Cargo.lock | 1 + aoc_2022/Cargo.toml | 2 +- aoc_lib/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebdf095..2576466 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,6 +295,7 @@ dependencies = [ [[package]] name = "nd_vec" version = "0.2.0" +source = "git+https://github.com/Basicprogrammer10/nd-vec#c3b7522f7a1a73215e809598bf8a474da4371525" dependencies = [ "num-traits", ] diff --git a/aoc_2022/Cargo.toml b/aoc_2022/Cargo.toml index 1ebb0d6..2d701f5 100644 --- a/aoc_2022/Cargo.toml +++ b/aoc_2022/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" common = { path = "../common" } derive_more = "0.99.17" hashbrown = "0.13.1" -nd_vec = { path = "../../nd-vec" } +nd_vec = { git = "https://github.com/Basicprogrammer10/nd-vec" } num-traits = "0.2.15" petgraph = "0.6.2" rayon = "1.6.1" diff --git a/aoc_lib/Cargo.toml b/aoc_lib/Cargo.toml index 77b056a..f2ddc5e 100644 --- a/aoc_lib/Cargo.toml +++ b/aoc_lib/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" [dependencies] derive_more = "0.99.17" -nd_vec = { path = "../../nd-vec" } +nd_vec = { git = "https://github.com/Basicprogrammer10/nd-vec" } num-traits = "0.2.17"