[package]
name = "keelson-exec"
description = "keelson's execution traits: Executor, Transaction, Row and the fetch/execute verbs. Driver-free; backends implement it."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
readme = "README.md"
keywords = ["sql", "database", "async", "executor", "transaction"]
categories = ["database"]
[features]
tracing = ["dep:tracing"]
[dependencies]
keelson-core.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing = { workspace = true, optional = true }
[dev-dependencies]
keelson-exec = { path = ".", features = ["tracing"] }
keelson-core = { path = "../keelson-core", features = ["testing"] }
tokio = { workspace = true, features = ["sync", "macros", "rt"] }
[package.metadata.docs.rs]
features = ["tracing"]
[lints]
workspace = true