Skip to content

Commit 26af99c

Browse files
committed
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.
2 parents bcccab1 + ef83e85 commit 26af99c

File tree

9 files changed

+11
-2
lines changed

9 files changed

+11
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ authors = ["The Rust Project Developers"]
33
description = "A collection of numeric types and traits for Rust, including bigint,\ncomplex, rational, range iterators, generic integers, and more!\n"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
6-
keywords = ["mathematics", "numerics"]
6+
keywords = ["mathematics", "numerics", "bignum"]
7+
categories = [ "algorithms", "data-structures", "science" ]
78
license = "MIT/Apache-2.0"
89
repository = "https://github.com/rust-num/num"
910
name = "num"

bigint/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ authors = ["The Rust Project Developers"]
33
description = "Big integer implementation for Rust"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
6-
keywords = ["mathematics", "numerics"]
6+
keywords = ["mathematics", "numerics", "bignum"]
7+
categories = [ "algorithms", "data-structures", "science" ]
78
license = "MIT/Apache-2.0"
89
name = "num-bigint"
910
repository = "https://github.com/rust-num/num"

complex/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "Complex numbers implementation for Rust"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "algorithms", "data-structures", "science" ]
78
license = "MIT/Apache-2.0"
89
name = "num-complex"
910
repository = "https://github.com/rust-num/num"

derive/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "Numeric syntax extensions"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "science" ]
78
license = "MIT/Apache-2.0"
89
name = "num-derive"
910
repository = "https://github.com/rust-num/num"

integer/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "Integer traits and functions"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "algorithms", "science" ]
78
license = "MIT/Apache-2.0"
89
repository = "https://github.com/rust-num/num"
910
name = "num-integer"

iter/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "External iterators for generic mathematics"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "algorithms", "science" ]
78
license = "MIT/Apache-2.0"
89
repository = "https://github.com/rust-num/num"
910
name = "num-iter"

macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ homepage = "https://github.com/rust-num/num"
77
repository = "https://github.com/rust-num/num"
88
documentation = "http://rust-num.github.io/num"
99
keywords = ["mathematics", "numerics"]
10+
categories = [ "science" ]
1011
description = "Numeric syntax extensions"
1112

1213
[lib]

rational/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "Rational numbers implementation for Rust"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "algorithms", "data-structures", "science" ]
78
license = "MIT/Apache-2.0"
89
name = "num-rational"
910
repository = "https://github.com/rust-num/num"

traits/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = "Numeric traits for generic mathematics"
44
documentation = "http://rust-num.github.io/num"
55
homepage = "https://github.com/rust-num/num"
66
keywords = ["mathematics", "numerics"]
7+
categories = [ "algorithms", "science" ]
78
license = "MIT/Apache-2.0"
89
repository = "https://github.com/rust-num/num"
910
name = "num-traits"

0 commit comments

Comments
 (0)