warpgate/warpgate-db-migrations/Cargo.toml
2024-07-16 10:40:27 +02:00

25 lines
621 B
TOML

[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-db-migrations"
publish = false
version = "0.9.1"
[lib]
[dependencies]
async-std = { version = "^1.11", features = ["attributes"] }
chrono = { version = "0.4", default-features = false, features = ["serde"] }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"macros",
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
sea-orm-migration = { version = "0.12.2", default-features = false, features = [
"cli",
] }
uuid = { version = "1.2", features = ["v4", "serde"] }
serde_json = "1.0"