More rand version bump.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-06-13 17:46:45 -07:00
parent d1a04b9b0c
commit 3fb564ff19
3 changed files with 15 additions and 4 deletions

View File

@@ -11,7 +11,8 @@ actix-web = "0.7.8"
askama = "0.7.1"
image = "0.22.3"
log = "0.4.5"
rand = "0.5.5"
rand = "0.8.3"
rand_xorshift = "0.3.0"
renderer = { path = "../renderer" }
serde = "1.0.79"
serde_derive = "1.0.79"

View File

@@ -14,7 +14,7 @@ use askama::Template;
use image;
use log::info;
use rand::SeedableRng;
use rand::XorShiftRng;
use rand_xorshift::XorShiftRng;
use serde_derive::Deserialize;
use structopt::StructOpt;