warpgate/warpgate-db-migrations/Cargo.toml

23 lines
487 B
TOML
Raw Permalink 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
2022-09-27 04:57:45 +08:00
version = "0.6.4"
2022-04-11 04:58:58 +08:00
[lib]
[dependencies]
2022-05-30 18:55:09 +08:00
async-std = "^1.11"
chrono = "0.4"
sea-orm = { version = "^0.9", features = [
"runtime-tokio-native-tls",
"macros",
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
sea-orm-migration = { version = "^0.9", default-features = false }
uuid = { version = "1.0", features = ["v4", "serde"] }
2022-09-02 20:00:08 +08:00
serde_json = "1.0"