diff --git a/euler/Cargo.toml b/euler/Cargo.toml index 0e42684..3712919 100644 --- a/euler/Cargo.toml +++ b/euler/Cargo.toml @@ -11,7 +11,7 @@ expensive_tests = [] serde1 = ["serde", "arrayvec/serde"] [dependencies] -ndarray = "0.13.1" +ndarray = "0.14.0" sbp = { path = "../sbp" } arrayvec = "0.5.1" serde = { version = "1.0.115", default-features = false, optional = true, features = ["derive"] } diff --git a/gridgeneration/Cargo.toml b/gridgeneration/Cargo.toml index 7d37d76..3a3853c 100644 --- a/gridgeneration/Cargo.toml +++ b/gridgeneration/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Magnus Ulimoen "] edition = "2018" [dependencies] -ndarray = { version = "0.13.1", default-features = false } +ndarray = { version = "0.14.0", default-features = false } plotters = { version = "0.3.0", default-features = false, features = ["svg_backend", "line_series", "point_series"] } sbp = { path = "../sbp" } json5 = { version = "0.2.8", optional = true } diff --git a/heat-equation/Cargo.toml b/heat-equation/Cargo.toml index 9374291..8640986 100644 --- a/heat-equation/Cargo.toml +++ b/heat-equation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] sbp = { path = "../sbp", features = ["sparse"] } -ndarray = "0.13.1" +ndarray = "0.14.0" plotters = { version = "0.3.0", default-features = false, features = ["bitmap_gif", "bitmap_backend", "line_series"] } sprs = { version = "0.9.0", default-features = false } diff --git a/maxwell/Cargo.toml b/maxwell/Cargo.toml index cc846df..3b108d8 100644 --- a/maxwell/Cargo.toml +++ b/maxwell/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" sparse = ["sbp/sparse", "sprs"] [dependencies] -ndarray = "0.13.1" +ndarray = "0.14.0" sbp = { path = "../sbp" } sprs = { version = "0.9.0", optional = true, default-features = false } diff --git a/multigrid/Cargo.toml b/multigrid/Cargo.toml index 0f2579a..c6760d9 100644 --- a/multigrid/Cargo.toml +++ b/multigrid/Cargo.toml @@ -12,7 +12,7 @@ hdf5 = "0.7.0" rayon = "1.3.0" indicatif = "0.15.0" structopt = "0.3.14" -ndarray = { version = "0.13.1", features = ["serde"] } +ndarray = { version = "0.14.0", features = ["serde"] } serde = { version = "1.0.115", features = ["derive"] } json5 = "0.3.0" indexmap = { version = "1.5.2", features = ["serde-1"] } diff --git a/sbp/Cargo.toml b/sbp/Cargo.toml index 97ddecb..72947dd 100644 --- a/sbp/Cargo.toml +++ b/sbp/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Magnus Ulimoen "] edition = "2018" [dependencies] -ndarray = { version = "0.13.1", features = ["approx"] } -approx = "0.3.2" +ndarray = { version = "0.14.0", features = ["approx"] } +approx = "0.4.0" packed_simd = { version = "0.3.3", package = "packed_simd_2" } rayon = { version = "1.3.0", optional = true } sprs = { version = "0.9.0", optional = true, default-features = false } diff --git a/shallow_water/Cargo.toml b/shallow_water/Cargo.toml index e51be37..2c9e8f6 100644 --- a/shallow_water/Cargo.toml +++ b/shallow_water/Cargo.toml @@ -5,6 +5,6 @@ authors = ["Magnus Ulimoen "] edition = "2018" [dependencies] -ndarray = "0.13.1" +ndarray = "0.14.0" sbp = { path = "../sbp" } log = "0.4.8" diff --git a/webfront/Cargo.toml b/webfront/Cargo.toml index f3338c5..43baf83 100644 --- a/webfront/Cargo.toml +++ b/webfront/Cargo.toml @@ -12,7 +12,7 @@ wasm-bindgen = "0.2.63" console_error_panic_hook = "0.1.6" wee_alloc = "0.4.5" sbp = { path = "../sbp", features = ["f32", "fast-float"] } -ndarray = "0.13.1" +ndarray = "0.14.0" euler = { path = "../euler" } maxwell = { path = "../maxwell" } shallow-water = { path = "../shallow_water" }