vld-sqlx 0.2.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.2.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 = ["sqlite"]
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]

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

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

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.8"
default-features = false

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

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

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