From d318b2975fc768a93f824de85fea680bfca2e5e0 Mon Sep 17 00:00:00 2001 From: Matt Ickstadt Date: Wed, 12 May 2021 00:03:55 -0500 Subject: [PATCH] Update to 2018 edition --- Cargo.toml | 1 + src/main.rs | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ec23325..18bc31a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,7 @@ description = "Helps create a swirly timelapse gif" repository = "https://github.com/mattico/spiralizer" keywords = ["image", "gif"] license = "MIT" +edition = "2018" [dependencies] clap = "2" diff --git a/src/main.rs b/src/main.rs index 79499a4..172c3bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,9 +1,3 @@ -extern crate clap; -extern crate image; -extern crate memmap; -extern crate pbr; -extern crate tempfile; - use std::f64::consts::PI; use std::fs::File; use std::io::prelude::*;