[package]
edition = "2024"
rust-version = "1.90"
name = "keelson-mysql"
version = "0.1.0"
authors = ["Kensuke Kubo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The MySQL dialect for keelson."
readme = "README.md"
keywords = [
"sql",
"mysql",
"mariadb",
"query-builder",
"database",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ken109/keelson-rs"
[features]
exhaustive = []
live-docker = []
macros = ["keelson-core/macros"]
[lib]
name = "keelson_mysql"
path = "src/lib.rs"
[[test]]
name = "combinatorial"
path = "tests/combinatorial.rs"
[[test]]
name = "grammar_delete"
path = "tests/grammar_delete.rs"
[[test]]
name = "grammar_insert"
path = "tests/grammar_insert.rs"
[[test]]
name = "grammar_select"
path = "tests/grammar_select.rs"
[[test]]
name = "grammar_update"
path = "tests/grammar_update.rs"
[[test]]
name = "grammar_values"
path = "tests/grammar_values.rs"
[dependencies.keelson-core]
version = "0.1.0"
[dev-dependencies]
[lints.clippy]
todo = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"