From bbb5aff6b60efe4b3e87f58007944fb0f3c06af9 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Fri, 22 Oct 2021 01:56:11 -0300 Subject: [PATCH] chore: update to Rust 2021 --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c00748..973b282 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,11 @@ name = "mandelbrot" version = "0.1.0" authors = ["Rekai Musuka "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy = "^0.5" -num-complex = "^0.4" -rayon = "^1.5" +bevy = "0.5" +num-complex = "0.4" +rayon = "1.5"