rust-average/Cargo.toml

28 lines
550 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-24 11:34:06 +02:00
version = "0.5.0"
2017-04-26 20:43:00 +02:00
license = "MIT/Apache-2.0"
repository = "https://github.com/vks/average"
description = "Calculate the average of a sequence and its error iteratively"
2017-05-05 17:14:32 +02:00
readme = "README.md"
2017-04-26 20:43:00 +02:00
categories = ["science", "no-std"]
keywords = ["statistics", "stats"]
2017-04-26 20:24:20 +02:00
[dependencies]
conv = "0.3"
2017-05-25 15:29:21 +02:00
quickersort = "2"
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