mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-06 14:44:24 +08:00
29 lines
699 B
TOML
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"]
|