sql-composer 0.0.2

SQL template engine that composes reusable SQL fragments with parameterized bindings
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 = "2021"
name = "sql-composer"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL template engine that composes reusable SQL fragments with parameterized bindings"
readme = "README.md"
keywords = [
    "sql",
    "template",
    "composer",
    "parser",
    "winnow",
]
categories = [
    "parser-implementations",
    "database",
]
license = "MIT"
repository = "https://github.com/soulstompp/sql-composer"

[features]
default = ["std"]
serde = ["dep:serde"]
std = ["winnow/std"]

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

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.winnow]
version = "0.7"

[dev-dependencies.tempfile]
version = "3.26.0"