From ced0bbd3708fb2171543eaf49e2406098c6671cc Mon Sep 17 00:00:00 2001 From: w1nst0n Date: Thu, 9 Sep 2021 16:03:14 +0200 Subject: [PATCH] Update cargo config to use Rust 2021 edition --- Cargo.lock | 1 - Cargo.toml | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2458d6f..59a8e4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,6 @@ dependencies = [ "serde", "serde_json", "static_init", - "web-sys", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 1f7f3e5..caf8cca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,10 @@ cargo-features = ["strip"] # nightly name = "UadGui" version = "0.1.0" authors = ["w1nst0n"] -edition = "2018" -resolver = "2" +edition = "2021" [dependencies] iced = { git = "https://github.com/hecrj/iced.git", features = ["svg"] } -web-sys = { version = "0.3.51" } serde = { version = "^1.0", features = ["derive"] } serde_json = "^1.0" static_init = "^1.0"