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"