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.
This commit is contained in:
commit
26af99cf39
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue