sql_from_models 0.1.15

A migration management library for applications using PostgresSQL, MySQL or SQLite.
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 = "2018"
name = "sql_from_models"
version = "0.1.15"
authors = [
    "Tomas Vallotton <tvallotton@uc.cl>",
    "higneer <contact@higneer.ovh>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A migration management library for applications using PostgresSQL, MySQL or SQLite."
readme = "README.md"
keywords = [
    "database",
    "postgres",
    "sqlite",
    "sql",
    "migration",
]
license = "Apache-2.0"

[features]
default = ["sqlformat"]
json = [
    "serde",
    "serde_json",
]
sqlx-mysql = [
    "sqlx",
    "sqlx/mysql",
    "sqlx/json",
]
sqlx-postgres = [
    "sqlx",
    "sqlx/postgres",
    "sqlx/json",
]
sqlx-sqlite = [
    "sqlx",
    "sqlx/sqlite",
    "sqlx/json",
]

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

[dependencies.chrono]
version = "0.4.19"
optional = true

[dependencies.once_cell]
version = "1.8.0"

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

[dependencies.serde_json]
version = "1.0.68"
optional = true

[dependencies.sql_from_models-parser]
version = "0.2.2"

[dependencies.sql_from_models-proc-macro]
version = "0.1.10"

[dependencies.sqlformat]
version = "0.3.4"
optional = true

[dependencies.sqlx]
version = "0.8.3"
optional = true

[dependencies.thiserror]
version = "1.0.29"

[dependencies.url]
version = "2.2.2"

[dev-dependencies.sqlx]
version = "0.8.3"
features = [
    "runtime-async-std-native-tls",
    "postgres",
]