Skip to content

Commit 89f9a22

Browse files
authored
Fix keywords and categories (#168)
Issue #, if available: #167 Description of changes: Fixes keywords and categories in Cargo.toml; specifically it ensures the number keywords is less than or equal to 5, because a value more than that causes an issue in cargo publish.
1 parent b8876d9 commit 89f9a22

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

partiql-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://github.com/partiql/partiql-lang-rust"
66
repository = "https://github.com/partiql/partiql-lang-rust"
77
license = "Apache-2.0"
88
readme = "../README.md"
9-
keywords = ["sql", "parser", "query", "compilers", "interpreters"]
9+
keywords = ["sql", "parser", "query", "compilers", "cli"]
1010
categories = ["database", "compilers", "parser-implementations"]
1111
exclude = [
1212
"**/.git/**",

partiql-conformance-test-generator/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ homepage = "https://github.com/partiql/partiql-lang-rust"
66
repository = "https://github.com/partiql/partiql-lang-rust"
77
license = "Apache-2.0"
88
readme = "../README.md"
9+
keywords = ["sql", "parser", "conformance", "codegen", "tests"]
10+
categories = ["database", "compilers", "parser-implementations"]
911
exclude = [
1012
"**/.git/**",
1113
"**/.github/**",

partiql-conformance-tests/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ homepage = "https://github.com/partiql/partiql-lang-rust"
66
repository = "https://github.com/partiql/partiql-lang-rust"
77
license = "Apache-2.0"
88
readme = "../README.md"
9+
keywords = ["sql", "parser", "conformance", "compilers", "tests"]
10+
categories = ["database", "compilers", "parser-implementations"]
911
exclude = [
1012
"**/.git/**",
1113
"**/.github/**",

partiql-playground/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ homepage = "https://github.com/partiql/partiql-lang-rust"
66
repository = "https://github.com/partiql/partiql-lang-rust"
77
license = "Apache-2.0"
88
readme = "../README.md"
9-
keywords = ["sql", "ast", "query", "compilers", "interpreters"]
10-
categories = ["database", "compilers", "wasm", "frontend"]
9+
keywords = ["sql", "ast", "query", "compilers", "playground"]
10+
categories = ["database", "compilers", "wasm", "web"]
1111
exclude = [
1212
"**/.git/**",
1313
"**/.github/**",

partiql-source-map/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://github.com/partiql/partiql-lang-rust"
66
repository = "https://github.com/partiql/partiql-lang-rust"
77
license = "Apache-2.0"
88
readme = "../README.md"
9-
keywords = ["sql", "source", "sourcemap", "query", "compilers", "interpreters"]
9+
keywords = ["sql", "sourcemap", "query", "compilers", "interpreters"]
1010
categories = ["database", "compilers"]
1111
exclude = [
1212
"**/.git/**",

0 commit comments

Comments
 (0)