warpgate/warpgate-db-migrations/Cargo.toml

25 lines
621 B
TOML
Raw Normal View History

2022-04-11 04:58:58 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
2022-04-16 06:27:10 +08:00
name = "warpgate-db-migrations"
publish = false
2023-08-21 01:06:49 +08:00
version = "0.8.0"
2022-04-11 04:58:58 +08:00
[lib]
[dependencies]
2022-11-12 00:36:30 +08:00
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 = [
2022-11-12 00:36:30 +08:00
"cli",
] }
uuid = { version = "1.2", features = ["v4", "serde"] }
2022-09-02 20:00:08 +08:00
serde_json = "1.0"