From 93933ff00b8e302818d4f2cdc5276b5c0dbf9b5a Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 14 Sep 2023 09:41:38 -0500 Subject: [PATCH] adding fastrand --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index ce7591f..a690b11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,6 +254,12 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "filetime" version = "0.2.22" @@ -341,6 +347,7 @@ dependencies = [ "diesel", "diesel_migrations", "dirs", + "fastrand", "libsqlite3-sys", "quote", "serde", diff --git a/Cargo.toml b/Cargo.toml index b392f3b..0134f57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,7 @@ diesel_migrations = { version = "2.1.0", features = ["sqlite"] } tar = "0.4.40" zstd = "0.12.4" serde_json = "1.0.104" +fastrand = "2.0.0" # sqlx = { version = "0.6.3", features = ["sqlite", "runtime-async-std"] } # ffmpeg-next = "6.0.0"