warpgate/warpgate-db-migrations/Cargo.toml
2025-06-04 10:12:02 +02:00

29 lines
699 B
TOML

[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-db-migrations"
publish = false
version = "0.14.0"
[lib]
[dependencies]
tokio.workspace = true
chrono = { version = "0.4", default-features = false, features = ["serde"] }
data-encoding.workspace = true
sea-orm = { workspace = true, features = [
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
sea-orm-migration.workspace = true
russh.workspace = true
tracing.workspace = true
uuid = { version = "1.3", features = ["v4", "serde"] }
serde_json.workspace = true
serde.workspace = true
[features]
postgres = ["sea-orm/sqlx-postgres"]
mysql = ["sea-orm/sqlx-mysql"]
sqlite = ["sea-orm/sqlx-sqlite"]