num-traits/complex/Cargo.toml

30 lines
643 B
TOML
Raw Normal View History

2016-03-10 23:55:53 +00:00
[package]
2016-03-11 09:22:26 +00:00
authors = ["The Rust Project Developers"]
2016-04-10 08:31:11 +00:00
description = "Complex numbers implementation for Rust"
2016-03-11 09:22:26 +00:00
documentation = "http://rust-num.github.io/num"
homepage = "https://github.com/rust-num/num"
keywords = ["mathematics", "numerics"]
license = "MIT/Apache-2.0"
2016-03-10 23:55:53 +00:00
name = "num-complex"
2016-04-11 18:43:07 +00:00
repository = "https://github.com/rust-num/num"
version = "0.1.35"
2016-03-10 23:55:53 +00:00
[dependencies]
[dependencies.num-traits]
optional = false
path = "../traits"
2016-04-14 07:29:19 +00:00
version = "0.1.32"
2016-04-11 18:43:07 +00:00
[dependencies.rustc-serialize]
optional = true
version = "0.3.19"
[dependencies.serde]
optional = true
2016-08-15 22:47:32 +00:00
version = ">= 0.7.0, < 0.9.0"
2016-04-11 18:43:07 +00:00
[features]
default = ["rustc-serialize"]
unstable = []