schema-installer 0.2.0

A set of tools to manage relational database schemas
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 = "2024"
name = "schema-installer"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A set of tools to manage relational database schemas"
homepage = "https://github.com/jstano/schema-rs"
documentation = "https://docs.rs/schema-installer"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/jstano/schema-rs"

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

[[bin]]
name = "schema-installer"
path = "src/main.rs"

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.hex]
version = "0.4"

[dependencies.schema-model]
version = "0.2.0"

[dependencies.schema-parser]
version = "0.2.0"

[dependencies.schema-sql-generator]
version = "0.2.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "tls-rustls",
    "postgres",
    "sqlite",
    "any",
]

[dependencies.thiserror]
version = "1"

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