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]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"sbp",
|
"sbp",
|
||||||
|
@ -15,6 +8,8 @@ members = [
|
||||||
"shallow_water",
|
"shallow_water",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
default-members = ["sbp", "euler", "maxwell", "shallow_water"]
|
||||||
|
|
||||||
[profile.bench]
|
[profile.bench]
|
||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
|
@ -23,5 +18,5 @@ debug = true
|
||||||
|
|
||||||
[patch]
|
[patch]
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
hdf5 = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "master" }
|
hdf5 = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" }
|
||||||
sprs = { git = "https://github.com/vbarrielle/sprs.git" }
|
hdf5-sys = { git = "https://github.com/mulimoen/hdf5-rust.git", branch = "feature/resizable_idx" }
|
||||||
|
|
|
@ -10,7 +10,7 @@ sparse = ["sbp/sparse", "sprs"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ndarray = "0.13.1"
|
ndarray = "0.13.1"
|
||||||
sbp = { path = "../sbp" }
|
sbp = { path = "../sbp" }
|
||||||
sprs = { version = "0.7.1", optional = true }
|
sprs = { version = "0.8.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3.2"
|
criterion = "0.3.2"
|
||||||
|
|
|
@ -8,7 +8,7 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sbp = { path = "../sbp", features = ["rayon"] }
|
sbp = { path = "../sbp", features = ["rayon"] }
|
||||||
euler = { path = "../euler" }
|
euler = { path = "../euler" }
|
||||||
hdf5 = { version = "0.6.1", features = ["static", "gzip"] }
|
hdf5 = "0.7.0"
|
||||||
rayon = "1.3.0"
|
rayon = "1.3.0"
|
||||||
indicatif = "0.14.0"
|
indicatif = "0.14.0"
|
||||||
structopt = "0.3.14"
|
structopt = "0.3.14"
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#![feature(str_strip)]
|
|
||||||
use either::*;
|
use either::*;
|
||||||
use structopt::StructOpt;
|
use structopt::StructOpt;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue