From 8fb44d0ad9d69b3453dee1031e054ce1e73155b5 Mon Sep 17 00:00:00 2001 From: Mika Date: Fri, 20 Jun 2025 13:41:55 +0200 Subject: [PATCH] remove rand again after testing --- Cargo.lock | 1 - crates/backend/Cargo.toml | 3 --- 2 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb49e76..a0af772 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -635,7 +635,6 @@ dependencies = [ "lazy_static", "log", "migration", - "rand 0.8.5", "sea-orm", "serde", "serde_json", diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 0ee4366..b343e49 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -47,9 +47,6 @@ testcontainers-modules = { version = "0.12.1", features = [ "postgres", ] } -# Only needed for tests right now -rand = "*" - [features] serve = []