From ec18fd986959b950acb943950d9dfffaf18dee9d Mon Sep 17 00:00:00 2001
From: Sander Saarend <sander@saarend.com>
Date: Wed, 28 Jun 2023 19:57:49 +0300
Subject: [PATCH] Fix cargo warnings (#3397)

---
 crates/api_crud/Cargo.toml  | 2 +-
 crates/db_schema/Cargo.toml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/crates/api_crud/Cargo.toml b/crates/api_crud/Cargo.toml
index abe747b1..a4dfb4ad 100644
--- a/crates/api_crud/Cargo.toml
+++ b/crates/api_crud/Cargo.toml
@@ -22,5 +22,5 @@ tracing = { workspace = true }
 url = { workspace = true }
 async-trait = { workspace = true }
 webmention = "0.4.0"
-chrono = { worspace = true }
+chrono = { workspace = true }
 uuid = { workspace = true }
\ No newline at end of file
diff --git a/crates/db_schema/Cargo.toml b/crates/db_schema/Cargo.toml
index 69affde8..26f9b790 100644
--- a/crates/db_schema/Cargo.toml
+++ b/crates/db_schema/Cargo.toml
@@ -48,7 +48,7 @@ rustls = { workspace = true }
 futures-util = { workspace = true }
 tokio-postgres = { workspace = true }
 tokio-postgres-rustls = { workspace = true }
-uuid = { features = ["v4"] }
+uuid = { workspace = true, features = ["v4"] }
 
 [dev-dependencies]
 serial_test = { workspace = true }
-- 
2.44.1