From 5f14320dae636d63c2804838b04b1f4d55319202 Mon Sep 17 00:00:00 2001 From: Kek5chen Date: Fri, 26 Apr 2024 12:20:38 +0200 Subject: [PATCH] vickylib: add uuid feature to diesel for Uuid de/serialization --- Cargo.lock | 1 + vicky/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 3c6544e..df48fcc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -971,6 +971,7 @@ dependencies = [ "diesel_derives", "itoa", "pq-sys", + "uuid", ] [[package]] diff --git a/vicky/Cargo.toml b/vicky/Cargo.toml index 1a1bec6..204b205 100644 --- a/vicky/Cargo.toml +++ b/vicky/Cargo.toml @@ -23,7 +23,7 @@ rocket = { version="0.5.0", features = ["json", "secrets"] } rocket_dyn_templates = { version = "0.1.0", features = ["tera"] } reqwest = { version="0.11.20", features = ["json"]} jwtk = "0.3.0" -diesel = { version = "2.1.6", features = ["postgres"]} +diesel = { version = "2.1.6", features = ["postgres", "uuid"]} [[bin]] name = "vicky"