Update dependencies and package structure
This commit is contained in:
parent
9ec90a42a9
commit
16c367ce20
13
Cargo.toml
13
Cargo.toml
|
@ -1,10 +1,3 @@
|
|||
[package]
|
||||
name = "diffsolver"
|
||||
version = "0.1.1"
|
||||
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"sbp",
|
||||
|
@ -15,6 +8,8 @@ members = [
|
|||
"shallow_water",
|
||||
]
|
||||
|
||||
default-members = ["sbp", "euler", "maxwell", "shallow_water"]
|
||||
|
||||
[profile.bench]
|
||||
debug = true
|
||||
|
||||
|
@ -23,5 +18,5 @@ debug = true
|
|||
|
||||
[patch]
|
||||
[patch.crates-io]
|
||||
hdf5 = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "master" }
|
||||
sprs = { git = "https://github.com/vbarrielle/sprs.git" }
|
||||
hdf5 = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" }
|
||||
hdf5-sys = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" }
|
||||
|
|
|
@ -10,7 +10,7 @@ sparse = ["sbp/sparse", "sprs"]
|
|||
[dependencies]
|
||||
ndarray = "0.13.1"
|
||||
sbp = { path = "../sbp" }
|
||||
sprs = { version = "0.7.1", optional = true }
|
||||
sprs = { version = "0.8.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3.2"
|
||||
|
|
|
@ -8,7 +8,7 @@ edition = "2018"
|
|||
[dependencies]
|
||||
sbp = { path = "../sbp", features = ["rayon"] }
|
||||
euler = { path = "../euler" }
|
||||
hdf5 = { version = "0.6.1", features = ["static", "gzip"] }
|
||||
hdf5 = "0.7.0"
|
||||
rayon = "1.3.0"
|
||||
indicatif = "0.14.0"
|
||||
structopt = "0.3.14"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#![feature(str_strip)]
|
||||
use either::*;
|
||||
use structopt::StructOpt;
|
||||
|
||||
|
|
Loading…
Reference in New Issue