[package] edition.workspace = true rust-version.workspace = true version.workspace = true authors.workspace = true homepage.workspace = true repository.workspace = true license.workspace = true categories.workspace = true name = "hipparchus-mean" description = "A collection of basic mathematics solver: Lp norm, mean, moving average, sequence..." readme = "README.md" keywords = ["mean", "lpnorm", "moving-average"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] num = { workspace = true } float-cmp = { workspace = true } bitflags = {workspace = true} once_cell = { workspace = true } [build-dependencies] [dev-dependencies] rstest ={ workspace = true } criterion = { workspace = true, features = ["html_reports"]} hipparchus-seq = { path = "../hipparchus-seq" } [[bench]] name = "norm" harness = false [[bench]] name = "mean" harness = false