Skip to content

Commit

Permalink
Add legacy rlst dependency (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
skailasa authored Dec 4, 2023
1 parent 8de7258 commit cd06e06
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions bem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ itertools = "0.10"
mpi = { version = "0.6.*", optional = true }
num = "0.4"
rayon = "1.7"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy" }

[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"]}
Expand Down
8 changes: 4 additions & 4 deletions element/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ bempp-quadrature = { path = "../quadrature" }
paste = "1.*"
libc = "0.2"
approx = "0.5"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy" }

2 changes: 1 addition & 1 deletion field/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bempp-kernel = { path = "../kernel" }
bempp-tools = { path = "../tools" }
itertools = "0.10"
num = "0.4"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
fftw = {git = "https://github.com/skailasa/fftw.git" }
cauchy = "0.4.*"
dashmap = {version = "5.5.0", features=["rayon"]}
Expand Down
2 changes: 1 addition & 1 deletion fmm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ rand = "0.8.*"
float-cmp = "0.9.0"
num_cpus = "1"
num = "0.4"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
fftw = {git = "https://github.com/skailasa/fftw.git" }
rayon = "1.7"
6 changes: 3 additions & 3 deletions grid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ bempp-element = { path = "../element"}
approx = "0.5"
itertools = "0.10"
mpi = { version = "0.6.*", optional = true }
rlst-common = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-proc-macro = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-common = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-proc-macro = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
4 changes: 2 additions & 2 deletions kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ approx = "0.5"
rayon = "1.7"
num = "0.4"
num_cpus = "1"
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}

[dev-dependencies]
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
2 changes: 1 addition & 1 deletion tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ libc = "0.2"
num = "0.4"
bempp-traits = { path = "../traits"}
rayon = "1.7"
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
4 changes: 2 additions & 2 deletions traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ crate-type = ["lib", "cdylib"]
cauchy="0.4.*"
thiserror="1.*"
num = "0.4"
rlst-common = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-common = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch = "legacy"}
2 changes: 1 addition & 1 deletion tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ memoffset = "0.6"
rand = "0.8.*"
hyksort = { path = "../hyksort", optional = true }
bempp-traits = { path = "../traits" }
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git" , branch = "legacy"}
num = "0.4"

[features]
Expand Down

0 comments on commit cd06e06

Please sign in to comment.