|
|
@ -6,13 +6,13 @@ edition = "2021" |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
|
|
|
|
|
|
|
|
[dependencies] |
|
|
|
[dependencies] |
|
|
|
ndarray = {version="*", features=["approx-0_5"]} |
|
|
|
ndarray = {version="~0.15", features=["approx-0_5"]} |
|
|
|
thiserror = "*" |
|
|
|
thiserror = "1.0.37" |
|
|
|
rand = "*" |
|
|
|
rand = "~0.8" |
|
|
|
bimap = "*" |
|
|
|
bimap = "~0.6" |
|
|
|
enum_dispatch = "*" |
|
|
|
enum_dispatch = "~0.3" |
|
|
|
statrs = "*" |
|
|
|
statrs = "~0.16" |
|
|
|
rand_chacha = "*" |
|
|
|
rand_chacha = "~0.3" |
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies] |
|
|
|
[dev-dependencies] |
|
|
|
approx = { package = "approx", version = "0.5" } |
|
|
|
approx = { package = "approx", version = "~0.5" } |
|
|
|