Skip to content

Commit 6a200a5

Browse files
committed
fix: expected at most 5 keywords per crate
1 parent 0fe7610 commit 6a200a5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ members = [
1919
]
2020

2121
[workspace.lints.rust]
22-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(postgres_14)', 'cfg(postgres_9_6)'] }
22+
unexpected_cfgs = { level = "warn", check-cfg = [
23+
'cfg(postgres_14)',
24+
'cfg(postgres_9_6)',
25+
] }
2326

2427
[package]
2528
name = "sqlx-oldapi"
@@ -30,7 +33,7 @@ repository = "https://github.com/lovasoa/sqlx"
3033
documentation = "https://docs.rs/sqlx"
3134
description = "🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, SQLite, MSSQL, and ODBC."
3235
edition = "2021"
33-
keywords = ["async", "postgres", "mysql", "sqlite", "mssql", "odbc"]
36+
keywords = ["postgres", "mysql", "sqlite", "mssql", "odbc"]
3437
categories = ["database", "asynchronous"]
3538
authors = [
3639
"Ryan Leckey <[email protected]>",
@@ -152,7 +155,7 @@ bstr = ["sqlx-core/bstr"]
152155
git2 = ["sqlx-core/git2"]
153156

154157
[dependencies]
155-
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.49-beta", path = "sqlx-core", default-features = false }
158+
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.49-beta", path = "sqlx-core", default-features = false }
156159
sqlx-macros = { package = "sqlx-macros-oldapi", version = "0.6.49-beta", path = "sqlx-macros", default-features = false, optional = true }
157160

158161
[dev-dependencies]

0 commit comments

Comments
 (0)