From 28bb3dc693aa2fb6dcbcd9268ab82219ed56671b Mon Sep 17 00:00:00 2001 From: skye Date: Mon, 1 May 2023 22:02:47 +0300 Subject: [PATCH] chore(client): add fastrand dep --- Cargo.lock | 1 + client/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 3770278..0e355b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2029,6 +2029,7 @@ dependencies = [ "bevy", "bevy_editor_pls", "bevy_egui", + "fastrand", "futures-lite", "reqwest", "serde", diff --git a/client/Cargo.toml b/client/Cargo.toml index f73aa13..768b899 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -17,6 +17,8 @@ reqwest = { version = "0.11.16", features = [ "blocking", "json", "gzip" ] } serde_repr = "0.1.12" +fastrand = "1.9.0" + [dependencies.serde] version = "1.0.160" default-features = false -- 2.44.1