From d89d93c9d0bd55a79cc46b97255e8f8c43e2d23b Mon Sep 17 00:00:00 2001 From: PARK BYUNG JUN Date: Sun, 28 Aug 2022 16:44:01 +0000 Subject: [PATCH] bug fixed --- Cargo.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 03fba8e..b8f83f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,14 @@ path = "./src/main.rs" [dependencies] chrono = { version = "0" } -diesel = { version = "1", features = ["chrono", "r2d2", "uuidv07", "postgres"] } +diesel = { version = "1", features = [ + "chrono", + "r2d2", + "uuidv07", + "postgres", + "serde_json", + "64-column-tables", +] } diesel_migrations = { version = "1" } diesel-derive-enum = { version = "1", features = ["postgres"] } futures = { version = "0", default-features = false, features = [ @@ -26,7 +33,7 @@ reqwest = { version = "0", features = ["json"] } serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } -tokio-cron-scheduler = { version = "*" } +tokio-cron-scheduler = { version = "0" } uuid = { version = "0", features = ["serde", "v4", "v5"] } beteran-protobuf-rust = { git = "https://gitlab.loafle.net/bet/beteran-protobuf-rust.git", tag = "v0.1.79-snapshot" }