Kaynağa Gözat

Merge #318

318: Add cargo keywords and categories. r=cuviper

Fixes #306. Suggestions welcome for better keywords/categories, though there is a limit of 5 of each.
bors[bot] 7 yıl önce
ebeveyn
işleme
26af99cf39

+ 2 - 1
Cargo.toml

@@ -3,7 +3,8 @@ 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"]
+keywords = ["mathematics", "numerics", "bignum"]
+categories = [ "algorithms", "data-structures", "science" ]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/rust-num/num"
 name = "num"

+ 2 - 1
bigint/Cargo.toml

@@ -3,7 +3,8 @@ authors = ["The Rust Project Developers"]
 description = "Big integer implementation for Rust"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
-keywords = ["mathematics", "numerics"]
+keywords = ["mathematics", "numerics", "bignum"]
+categories = [ "algorithms", "data-structures", "science" ]
 license = "MIT/Apache-2.0"
 name = "num-bigint"
 repository = "https://github.com/rust-num/num"

+ 1 - 0
complex/Cargo.toml

@@ -4,6 +4,7 @@ description = "Complex numbers implementation for Rust"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "algorithms", "data-structures", "science" ]
 license = "MIT/Apache-2.0"
 name = "num-complex"
 repository = "https://github.com/rust-num/num"

+ 1 - 0
derive/Cargo.toml

@@ -4,6 +4,7 @@ description = "Numeric syntax extensions"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "science" ]
 license = "MIT/Apache-2.0"
 name = "num-derive"
 repository = "https://github.com/rust-num/num"

+ 1 - 0
integer/Cargo.toml

@@ -4,6 +4,7 @@ description = "Integer traits and functions"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "algorithms", "science" ]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/rust-num/num"
 name = "num-integer"

+ 1 - 0
iter/Cargo.toml

@@ -4,6 +4,7 @@ description = "External iterators for generic mathematics"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "algorithms", "science" ]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/rust-num/num"
 name = "num-iter"

+ 1 - 0
macros/Cargo.toml

@@ -7,6 +7,7 @@ homepage = "https://github.com/rust-num/num"
 repository = "https://github.com/rust-num/num"
 documentation = "http://rust-num.github.io/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "science" ]
 description = "Numeric syntax extensions"
 
 [lib]

+ 1 - 0
rational/Cargo.toml

@@ -4,6 +4,7 @@ description = "Rational numbers implementation for Rust"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "algorithms", "data-structures", "science" ]
 license = "MIT/Apache-2.0"
 name = "num-rational"
 repository = "https://github.com/rust-num/num"

+ 1 - 0
traits/Cargo.toml

@@ -4,6 +4,7 @@ description = "Numeric traits for generic mathematics"
 documentation = "http://rust-num.github.io/num"
 homepage = "https://github.com/rust-num/num"
 keywords = ["mathematics", "numerics"]
+categories = [ "algorithms", "science" ]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/rust-num/num"
 name = "num-traits"