[package]
edition = "2024"
rust-version = "1.90"
name = "keelson-exec"
version = "0.1.1"
authors = ["Kensuke Kubo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "keelson's execution traits: Executor, Transaction, Row and the fetch/execute verbs. Driver-free; backends implement it."
readme = "README.md"
keywords = [
"sql",
"database",
"async",
"executor",
"transaction",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ken109/keelson-rs"
[package.metadata.docs.rs]
features = ["tracing"]
[features]
tracing = ["dep:tracing"]
[lib]
name = "keelson_exec"
path = "src/lib.rs"
[[test]]
name = "tracing"
path = "tests/tracing.rs"
[[test]]
name = "verbs"
path = "tests/verbs.rs"
[dependencies.keelson-core]
version = "0.1.1"
[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false
[dependencies.tracing]
version = "0.1"
features = ["std"]
optional = true
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"rt",
]
default-features = false
[lints.clippy]
todo = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"