forked from rust-num/num-complex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
authors = ["The Rust Project Developers"]
description = "Complex numbers implementation for Rust"
documentation = "https://docs.rs/num-complex"
homepage = "https://github.com/rust-num/num-complex"
keywords = ["mathematics", "numerics"]
categories = ["algorithms", "data-structures", "science", "no-std"]
license = "MIT/Apache-2.0"
name = "num-complex"
repository = "https://github.com/rust-num/num-complex"
version = "0.2.0"
readme = "README.md"
build = "build.rs"
[package.metadata.docs.rs]
features = ["std", "serde", "rand"]
[dependencies]
[dependencies.num-traits]
version = "0.2.4"
default-features = false
[dependencies.serde]
optional = true
version = "1.0"
default-features = false
[dependencies.rand]
optional = true
version = "0.5"
default-features = false
[features]
default = ["std"]
i128 = ["num-traits/i128"]
std = ["num-traits/std"]