From fea02d3c8bc49c1da5089396f7877102121ed111 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 12 Jul 2022 16:52:52 +0200 Subject: [PATCH] added missing sea-orm features --- warpgate-db-migrations/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warpgate-db-migrations/Cargo.toml b/warpgate-db-migrations/Cargo.toml index 8802708..9a7a27e 100644 --- a/warpgate-db-migrations/Cargo.toml +++ b/warpgate-db-migrations/Cargo.toml @@ -10,6 +10,6 @@ version = "0.3.0" [dependencies] async-std = "^1.11" chrono = "0.4" -sea-orm = {version = "^0.9", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"], default-features = false} +sea-orm = {version = "^0.9", features = ["sqlx-sqlite", "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"]}