From 3737099dda63bb97014816003984bd868ab3e00d Mon Sep 17 00:00:00 2001 From: Soumya Date: Mon, 14 Oct 2024 17:11:21 +0200 Subject: [PATCH] Removed formatting from Cargo.toml file - Added rayon and criterion as dependencies --- Cargo.toml | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 39c51a7a..0c8f0cc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,14 +10,7 @@ categories = ["science"] readme = "README.md" documentation = "https://axect.github.io/Peroxide_Doc" keywords = ["Numeric", "Science", "Dataframe", "Plot", "LinearAlgebra"] -exclude = [ - "example_data/", - "src/bin/", - # "benches/", - "example/", - "test_data/", - "peroxide-ad2", -] +exclude = ["example_data/", "src/bin/", "benches/", "example/", "test_data/", "peroxide-ad2"] [badges] travis-ci = { repository = "axect/peroxide" } @@ -40,27 +33,18 @@ anyhow = "1.0" paste = "1.0" #num-complex = "0.3" netcdf = { version = "0.7", optional = true, default-features = false } -pyo3 = { version = "0.22", optional = true, features = [ - "auto-initialize", - "gil-refs", -] } +pyo3 = { version = "0.22", optional = true, features = ["auto-initialize", "gil-refs"] } blas = { version = "0.22", optional = true } lapack = { version = "0.19", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } json = { version = "0.12", optional = true } -arrow2 = { version = "0.18", features = [ - "io_parquet", - "io_parquet_compression", -], optional = true } +arrow2 = { version = "0.18", features = ["io_parquet", "io_parquet_compression"], optional = true } num-complex = { version = "0.4", optional = true } -lambert_w = { version = "0.3.0", default-features = false, features = [ - "24bits", - "50bits", -] } +lambert_w = { version = "0.3.0", default-features = false, features = ["24bits", "50bits"] } rayon = "1.10" [package.metadata.docs.rs] -rustdoc-args = ["--html-in-header", "katex-header.html", "--cfg", "docsrs"] +rustdoc-args = [ "--html-in-header", "katex-header.html", "--cfg", "docsrs"] [features] default = []