mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-15 12:31:55 +08:00
29 lines
737 B
TOML
29 lines
737 B
TOML
[package]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "warpgate-db-migrations"
|
|
publish = false
|
|
version = "0.11.0"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.20", features = ["macros", "rt-multi-thread"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["serde"] }
|
|
sea-orm = { version = "0.12", features = [
|
|
"runtime-tokio-rustls",
|
|
"macros",
|
|
"with-chrono",
|
|
"with-uuid",
|
|
"with-json",
|
|
], default-features = false }
|
|
sea-orm-migration = { version = "0.12", default-features = false, features = [
|
|
"cli",
|
|
] }
|
|
uuid = { version = "1.3", features = ["v4", "serde"] }
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
postgres = ["sea-orm/sqlx-postgres"]
|
|
mysql = ["sea-orm/sqlx-mysql"]
|
|
sqlite = ["sea-orm/sqlx-sqlite"]
|