diff --git a/Cargo.toml b/Cargo.toml index 5ef3ccd..e35c26c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ documentation = "http://rust-num.github.io/num" homepage = "https://github.com/rust-num/num" keywords = ["mathematics", "numerics"] license = "MIT/Apache-2.0" -name = "num" repository = "https://github.com/rust-num/num" +name = "num" version = "0.1.31" [[bench]] diff --git a/bigint/Cargo.toml b/bigint/Cargo.toml index 657e511..883fb50 100644 --- a/bigint/Cargo.toml +++ b/bigint/Cargo.toml @@ -1,5 +1,11 @@ [package] -authors = ["Łukasz Jan Niemier "] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-bigint" version = "0.1.0" diff --git a/complex/Cargo.toml b/complex/Cargo.toml index 3c719fb..3dc0a52 100644 --- a/complex/Cargo.toml +++ b/complex/Cargo.toml @@ -1,5 +1,11 @@ [package] -authors = ["Łukasz Jan Niemier "] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-complex" version = "0.1.0" diff --git a/integer/Cargo.toml b/integer/Cargo.toml index 29991b3..413a99b 100644 --- a/integer/Cargo.toml +++ b/integer/Cargo.toml @@ -1,7 +1,13 @@ [package] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-integer" version = "0.1.0" -authors = ["Łukasz Jan Niemier "] [dependencies.num-traits] path = "../traits" diff --git a/iter/Cargo.toml b/iter/Cargo.toml index 0c69411..e36b457 100644 --- a/iter/Cargo.toml +++ b/iter/Cargo.toml @@ -1,5 +1,11 @@ [package] -authors = ["Łukasz Jan Niemier "] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-iter" version = "0.1.0" diff --git a/rational/Cargo.toml b/rational/Cargo.toml index 5524742..10b51f8 100644 --- a/rational/Cargo.toml +++ b/rational/Cargo.toml @@ -1,5 +1,11 @@ [package] -authors = ["Łukasz Jan Niemier "] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-rational" version = "0.1.0" diff --git a/traits/Cargo.toml b/traits/Cargo.toml index ee01da4..ab72a01 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -1,6 +1,12 @@ [package] +authors = ["The Rust Project Developers"] +description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n" +documentation = "http://rust-num.github.io/num" +homepage = "https://github.com/rust-num/num" +keywords = ["mathematics", "numerics"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rust-num/num" name = "num-traits" version = "0.1.0" -authors = ["Łukasz Jan Niemier "] [dependencies]