rust-average/Cargo.toml

17 lines
414 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"
version = "0.1.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-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-04 11:17:50 +02:00
[dev-dependencies]
rand = "0.3"
2017-05-05 13:22:45 +02:00
streaming-stats = "0.1"