Skip to content

Commit

Permalink
Update workspace structure
Browse files Browse the repository at this point in the history
  • Loading branch information
edoars committed Jan 11, 2022
1 parent 01d602b commit 7bfbc7c
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 51 deletions.
53 changes: 49 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
[package]
name = "cyclovander"
version = "0.1.0"
authors = ["Edoardo Signorini <edoars@gmail.com>"]
edition = "2018"
description = """
Library for computing the condition number of the Vandermonde matrix associated with the nth cyclotomic polynomial.
"""
license = "Apache-2.0"
readme = "README.md"

[lib]
bench = false

[features]
default = ["intel-mkl-static"]

netlib-static = ["ndarray-linalg/netlib-static"]
netlib-system = ["ndarray-linalg/netlib-system"]

openblas-static = ["ndarray-linalg/openblas-static"]
openblas-system = ["ndarray-linalg/openblas-system"]

intel-mkl-static = ["ndarray-linalg/intel-mkl-static"]
intel-mkl-system = ["ndarray-linalg/intel-mkl-system"]

[workspace]
members = [
"lib",
"cli",
]
members = ["cli"]
default-members = [".", "cli"]

[dependencies]
ndarray = "0.15.2"
red_primality = "0.2.0"
num = "0.4.0"

[dependencies.ndarray-linalg]
version = "0.14.1"
default-features = false

[dev-dependencies.criterion]
version = "0.3.5"
features = ["html_reports"]

[dev-dependencies.pprof]
version = "0.5.0"
features = ["criterion", "flamegraph"]

[[bench]]
name = "trace"
harness = false
File renamed without changes.
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ rayon = "1.5.1"

[dependencies.cyclovander]
version = "0.1.0"
path = "../lib"
path = ".."
46 changes: 0 additions & 46 deletions lib/Cargo.toml

This file was deleted.

File renamed without changes.

0 comments on commit 7bfbc7c

Please sign in to comment.