diff --git a/Cargo.toml b/Cargo.toml index a8b6e4ca..15bd9d64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["probability", "statistics", "stats", "distribution", "math"] categories = ["science"] homepage = "https://github.com/statrs-dev/statrs" repository = "https://github.com/statrs-dev/statrs" -edition = "2018" +edition = "2021" include = ["CHANGELOG.md", "LICENSE.md", "src/"] @@ -22,12 +22,13 @@ nightly = [] [dependencies] rand = "0.8" -nalgebra = { version = "0.32", features = ["rand"] } +nalgebra = { version = "0.32", default_features = false, features = ["rand", "std"] } approx = "0.5.0" num-traits = "0.2.14" [dev-dependencies] criterion = "0.3.3" +nalgebra = { version = "0.32", default_features = false, features = ["macros"] } [[bench]] name = "order_statistics"