rust-average/Cargo.toml

28 lines
597 B
TOML
Raw Normal View History

2017-04-26 20:24:20 +02:00
[package]
authors = ["Vinzent Steinberg <Vinzent.Steinberg@gmail.com>"]
2017-05-04 11:17:50 +02:00
name = "average"
2017-05-31 00:06:53 +02:00
version = "0.6.1"
2017-04-26 20:43:00 +02:00
license = "MIT/Apache-2.0"
repository = "https://github.com/vks/average"
2017-05-29 00:39:33 +02:00
description = "Calculate statistics iteratively"
2017-05-05 17:14:32 +02:00
readme = "README.md"
2017-04-26 20:43:00 +02:00
categories = ["science", "no-std"]
2017-05-29 01:04:34 +02:00
keywords = ["statistics", "stats", "skewness", "kurtosis", "quantile"]
2017-04-26 20:24:20 +02:00
[dependencies]
conv = { version = "0.3", default-features = false }
quickersort = "3"
2017-05-04 11:17:50 +02:00
[dev-dependencies]
2017-05-05 16:20:44 +02:00
bencher = "0.1"
2017-05-04 11:17:50 +02:00
rand = "0.3"
2017-05-05 13:22:45 +02:00
streaming-stats = "0.1"
2017-05-05 16:20:44 +02:00
[[bench]]
name = "mean"
2017-05-05 16:20:44 +02:00
harness = false
2017-05-24 18:58:34 +02:00
[[bench]]
name = "min"
harness = false