cetane 0.1.1

Django-inspired database migrations for Diesel
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 = "cetane"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Django-inspired database migrations for Diesel"
readme = "README.md"
license = "BSD-2-Clause"
repository = "https://github.com/monokrome/cetane"

[features]
default = []
mysql = ["dep:mysql"]
postgres = ["dep:postgres"]
sqlite = ["dep:rusqlite"]

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

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

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

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

[dependencies.mysql]
version = "25"
optional = true

[dependencies.postgres]
version = "0.19"
optional = true

[dependencies.rusqlite]
version = "0.34"
optional = true

[dependencies.sea-query]
version = "0.32.7"
features = [
    "backend-sqlite",
    "backend-postgres",
    "backend-mysql",
]

[dev-dependencies.mysql]
version = "25"

[dev-dependencies.postgres]
version = "0.19"

[dev-dependencies.rusqlite]
version = "0.34"
features = ["bundled"]