Skip to content

Commit

Permalink
Remove K dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
kylc committed Dec 19, 2023
1 parent 8fa7ec5 commit ac3c2a1
Show file tree
Hide file tree
Showing 10 changed files with 419 additions and 310 deletions.
97 changes: 42 additions & 55 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/optik-cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ name = "optikcpp"
crate-type = ["staticlib"]

[dependencies]
nalgebra = "0.30"
nalgebra = "0.32"
optik = { path = "../optik" }
rand = "0.8"
2 changes: 1 addition & 1 deletion crates/optik-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ crate-type = ["cdylib"]
pyo3-build-config = "0.19"

[dependencies]
nalgebra = "0.30"
nalgebra = "0.32"
optik = { path = "../optik" }
pyo3 = { version = "0.19", features = ["extension-module", "abi3-py38"] }
6 changes: 3 additions & 3 deletions crates/optik/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ name = "optik"
crate-type = ["rlib"]

[dependencies]
k = "0.31"
nalgebra = "0.30"
nalgebra = "0.32"
ordered-float = "4.2"
petgraph = "0.6.4"
rand = "0.8"
rand_chacha = "0.3"
rayon = "1.8"
Expand All @@ -27,7 +27,7 @@ path = "../../examples/example.rs"
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
nalgebra = { version = "0.30", features = [ "rand", "serde-serialize" ] }
nalgebra = { version = "0.32", features = [ "rand", "serde-serialize" ] }
serde = "1.0"
serde_json = "1.0"

Expand Down
Loading

0 comments on commit ac3c2a1

Please sign in to comment.