vld-sqlx 0.4.0

SQLx integration for the vld validation library — validate before insert/update, typed column 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"
rust-version = "1.70"
name = "vld-sqlx"
version = "0.4.0"
build = false
exclude = [
    ".idea/",
    "tests/",
    "examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLx integration for the vld validation library — validate before insert/update, typed column wrappers"
homepage = "https://github.com/s00d/vld"
documentation = "https://docs.rs/vld-sqlx"
readme = "README.md"
keywords = [
    "validation",
    "sqlx",
    "database",
    "sql",
    "vld",
]
categories = [
    "database",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/s00d/vld"

[features]
default = [
    "sqlx-0_8",
    "sqlite",
]
mysql = [
    "sqlx08?/mysql",
    "sqlx09?/mysql",
]
postgres = [
    "sqlx08?/postgres",
    "sqlx09?/postgres",
]
sqlite = [
    "sqlx08?/sqlite",
    "sqlx09?/sqlite",
]
sqlx-0_8 = ["dep:sqlx08"]
sqlx-0_9 = ["dep:sqlx09"]

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

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

[dependencies.serde_json]
version = "1"

[dependencies.sqlx08]
version = "0.8"
optional = true
default-features = false
package = "sqlx"

[dependencies.sqlx09]
version = "0.9"
optional = true
default-features = false
package = "sqlx"

[dependencies.vld]
version = "0.4.0"
features = ["serialize"]

[dev-dependencies.sqlx08]
version = "0.8"
features = [
    "sqlite",
    "runtime-tokio",
]
package = "sqlx"

[dev-dependencies.sqlx09]
version = "0.9"
features = [
    "sqlite",
    "runtime-tokio",
]
package = "sqlx"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]