fnsql 0.3.1

Type-safe SQL query wrappers
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 = "fnsql"
version = "0.3.1"
build = false
include = [
    "Cargo.toml",
    "src/**/*.rs",
    "src/**/*.yml",
    "src/**/*.sh",
    "crates-io.md",
    "README.md",
    "LICENSE-APACHE",
    "LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe SQL query wrappers"
homepage = "https://github.com/da-x/fnsql"
readme = "crates-io.md"
keywords = [
    "sql",
    "proc_macro",
    "procmacro",
]
categories = ["database"]
license = "MIT/Apache-2.0"
repository = "https://github.com/da-x/fnsql"

[features]
all = [
    "with-sqlx-sqlite",
    "with-postgres",
    "prepare-cache",
]
default = []
prepare-cache = ["fnsql-macro/prepare-cache"]
with-postgres = [
    "fnsql-macro/with-postgres",
    "postgres",
    "tempdir",
]
with-sqlx-sqlite = [
    "fnsql-macro/with-sqlx-sqlite",
    "sqlx",
]

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

[dependencies.fnsql-macro]
version = "0.3.1"

[dependencies.postgres]
version = "0.19"
optional = true

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio-rustls",
    "sqlite",
    "uuid",
    "chrono",
]
optional = true

[dependencies.tempdir]
version = "0.3"
optional = true