From: Sander Saarend Date: Wed, 28 Jun 2023 16:57:49 +0000 (+0300) Subject: Fix cargo warnings (#3397) X-Git-Url: http://these/git/readmes/README.ja.md?a=commitdiff_plain;h=ec18fd986959b950acb943950d9dfffaf18dee9d;p=lemmy.git Fix cargo warnings (#3397) --- 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 }