sqlw 0.1.0

Compile-time SQL query building with schema-safe field references and automatic parameter binding
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"
name = "sqlw"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile-time SQL query building with schema-safe field references and automatic parameter binding"
documentation = "https://docs.rs/sqlw"
readme = "README.md"
keywords = [
    "sql",
    "query-builder",
    "compile-time",
    "safe",
    "macro",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/mrVncius/sqlw"

[features]
chrono = ["dep:chrono"]
default = []

[lib]
name = "sqlw"
path = "src/lib.rs"

[[test]]
name = "example"
path = "tests/example.rs"

[[test]]
name = "query"
path = "tests/query.rs"

[[test]]
name = "schema"
path = "tests/schema.rs"

[[bench]]
name = "generation"
path = "benches/generation.rs"
harness = false

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.sqlw_macro]
version = "0.1.0"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tokio]
version = "1.48.0"
features = ["full"]

[dev-dependencies.turso]
version = "0.5.0"