Update cargo config to use Rust 2021 edition

This commit is contained in:
w1nst0n 2021-09-09 16:03:14 +02:00
commit ced0bbd370
No known key found for this signature in database
GPG key ID: 34D27465928A0A1D
2 changed files with 1 additions and 4 deletions

1
Cargo.lock generated
View file

@ -10,7 +10,6 @@ dependencies = [
"serde",
"serde_json",
"static_init",
"web-sys",
]
[[package]]

View file

@ -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"