Skip to content

Commit 83dba02

Browse files
obsgolembluss
authored andcommitted
Bumped approx's version number.
1 parent 510d65b commit 83dba02

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ num-complex = { version = "0.4", default-features = false }
3434
# Use via the `rayon` crate feature!
3535
rayon_ = { version = "1.0.3", optional = true, package = "rayon" }
3636

37-
approx = { version = "0.4", optional = true , default-features = false }
38-
approx-0_5 = { package = "approx", version = "0.5", optional = true , default-features = false }
37+
approx = { version = "0.5", optional = true , default-features = false }
3938

4039
# Use via the `blas` crate feature!
4140
cblas-sys = { version = "0.1.4", optional = true, default-features = false }
@@ -49,7 +48,7 @@ rawpointer = { version = "0.2" }
4948
[dev-dependencies]
5049
defmac = "0.2"
5150
quickcheck = { version = "1.0", default-features = false }
52-
approx = "0.4"
51+
approx = "0.5"
5352
itertools = { version = "0.10.0", default-features = false, features = ["use_std"] }
5453

5554
[features]

src/array_approx.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,3 @@ macro_rules! impl_approx_traits {
193193

194194
#[cfg(feature = "approx")]
195195
impl_approx_traits!(approx, "**Requires crate feature `\"approx\"`.**");
196-
197-
#[cfg(feature = "approx-0_5")]
198-
impl_approx_traits!(approx_0_5, "**Requires crate feature `\"approx-0_5\"`.**");

xtest-blas/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
test = false
99

1010
[dev-dependencies]
11-
approx = "0.4"
11+
approx = "0.5"
1212
defmac = "0.2"
1313
num-traits = "0.2"
1414
num-complex = { version = "0.4", default-features = false }

xtest-numeric/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66
edition = "2018"
77

88
[dependencies]
9-
approx = "0.4"
9+
approx = "0.5"
1010
ndarray = { path = "..", features = ["approx"] }
1111
ndarray-rand = { path = "../ndarray-rand" }
1212
rand_distr = "0.4"

0 commit comments

Comments
 (0)