chain-builder 1.0.2

A query builder for MySQL for Rust is designed to be flexible and easy to use.
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 = "chain-builder"
version = "1.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A query builder for MySQL for Rust is designed to be flexible and easy to use."
readme = "README.md"
keywords = [
    "database",
    "mysql",
    "query",
    "builder",
    "rust",
]
categories = [
    "database",
    "database-implementations",
]
license = "MIT"
repository = "https://github.com/AssetsArt/chain-builder.git"

[features]
default = [
    "mysql",
    "sqlx_mysql",
]
dev-dependencies = [
    "mysql",
    "sqlite",
]
mysql = []
postgres = []
sqlite = []
sqlx_mysql = ["sqlx/mysql"]
sqlx_sqlite = ["sqlx/sqlite"]

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

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

[[test]]
name = "mysql_test"
path = "tests/mysql_test.rs"
required-features = ["mysql"]

[[test]]
name = "security_test"
path = "tests/security_test.rs"
required-features = [
    "mysql",
    "sqlite",
]

[[test]]
name = "sqlite_test"
path = "tests/sqlite_test.rs"
required-features = ["sqlite"]

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

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.9"

[dev-dependencies]