]> git.proxmox.com Git - rustc.git/blob - src/vendor/num/Cargo.toml
New upstream version 1.25.0+dfsg1
[rustc.git] / src / vendor / num / Cargo.toml
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2 #
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g. crates.io) dependencies
7 #
8 # If you believe there's an error in this file please file an
9 # issue against the rust-lang/cargo repository. If you're
10 # editing this file be aware that the upstream Cargo.toml
11 # will likely look very different (and much more reasonable)
12
13 [package]
14 name = "num"
15 version = "0.1.41"
16 authors = ["The Rust Project Developers"]
17 description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
18 homepage = "https://github.com/rust-num/num"
19 documentation = "http://rust-num.github.io/num"
20 keywords = ["mathematics", "numerics", "bignum"]
21 categories = ["algorithms", "data-structures", "science"]
22 license = "MIT/Apache-2.0"
23 repository = "https://github.com/rust-num/num"
24
25 [[bench]]
26 name = "bigint"
27
28 [[bench]]
29 name = "shootout-pidigits"
30 harness = false
31 [dependencies.num-rational]
32 version = "0.1.40"
33 optional = true
34
35 [dependencies.num-bigint]
36 version = "0.1.41"
37 optional = true
38
39 [dependencies.num-traits]
40 version = "0.1.41"
41
42 [dependencies.num-iter]
43 version = "0.1.34"
44 optional = false
45
46 [dependencies.num-integer]
47 version = "0.1.35"
48
49 [dependencies.num-complex]
50 version = "0.1.41"
51 optional = true
52 [dev-dependencies.rand]
53 version = "0.3.8"
54
55 [features]
56 complex = ["num-complex"]
57 bigint = ["num-bigint"]
58 default = ["bigint", "complex", "rational", "rustc-serialize"]
59 serde = ["num-bigint/serde", "num-complex/serde", "num-rational/serde"]
60 rational = ["num-rational"]
61 rustc-serialize = ["num-bigint/rustc-serialize", "num-complex/rustc-serialize", "num-rational/rustc-serialize"]
62 [badges.travis-ci]
63 repository = "rust-num/num"