[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"]