From ebc7bf41b85d210837220b61ef890de7f4bb3475 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 1 Dec 2019 22:07:31 -0800 Subject: [PATCH] adding disel to package list --- server/Cargo.lock | 2 ++ server/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/server/Cargo.lock b/server/Cargo.lock index 84de02a..14df283 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -117,6 +117,7 @@ dependencies = [ name = "client" version = "0.1.0" dependencies = [ + "diesel 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "rocket 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rocket_contrib 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)", @@ -183,6 +184,7 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "diesel_derives 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "libsqlite3-sys 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", "r2d2 0.8.7 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/server/Cargo.toml b/server/Cargo.toml index 36f8ea1..924dcbe 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -11,6 +11,8 @@ rocket = "0.4.2" serde = "1.0" serde_derive = "1.0" toml = "0.4.2" +diesel = { version = "1.4.2", features = ["chrono"] } + [dependencies.rocket_contrib] version = "0.4.2"