keelson-exec 0.1.0

keelson's execution traits: Executor, Transaction, Row and the fetch/execute verbs. Driver-free; backends implement it.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.90"
name = "keelson-exec"
version = "0.1.0"
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.0"

[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"