Skip to content

Commit

Permalink
Removed formatting from Cargo.toml file
Browse files Browse the repository at this point in the history
- Added rayon and criterion as dependencies
  • Loading branch information
soumyasen1809 committed Oct 14, 2024
1 parent a239f98 commit 3737099
Showing 1 changed file with 5 additions and 21 deletions.
26 changes: 5 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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 = []
Expand Down

0 comments on commit 3737099

Please sign in to comment.