From 22fbcfd9fb17afb80d2f3da107b8a8731a7d809a Mon Sep 17 00:00:00 2001 From: Alex Orlenko Date: Sun, 12 Mar 2023 01:03:31 +0000 Subject: [PATCH] Update edition everywhere --- examples/module/Cargo.toml | 2 +- mlua_derive/Cargo.toml | 2 +- tests/module/Cargo.toml | 2 +- tests/module/loader/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/module/Cargo.toml b/examples/module/Cargo.toml index 504c01e..e15c4af 100644 --- a/examples/module/Cargo.toml +++ b/examples/module/Cargo.toml @@ -2,7 +2,7 @@ name = "rust_module" version = "0.0.0" authors = ["Aleksandr Orlenko "] -edition = "2018" +edition = "2021" [lib] crate-type = ["cdylib"] diff --git a/mlua_derive/Cargo.toml b/mlua_derive/Cargo.toml index d314ac0..ce95218 100644 --- a/mlua_derive/Cargo.toml +++ b/mlua_derive/Cargo.toml @@ -2,7 +2,7 @@ name = "mlua_derive" version = "0.8.0" authors = ["Aleksandr Orlenko "] -edition = "2018" +edition = "2021" description = "Procedural macros for the mlua crate." repository = "https://github.com/khvzak/mlua" keywords = ["lua", "mlua"] diff --git a/tests/module/Cargo.toml b/tests/module/Cargo.toml index 3217cd8..c2e0da8 100644 --- a/tests/module/Cargo.toml +++ b/tests/module/Cargo.toml @@ -2,7 +2,7 @@ name = "test_module" version = "0.0.0" authors = ["Aleksandr Orlenko "] -edition = "2018" +edition = "2021" [lib] crate-type = ["cdylib"] diff --git a/tests/module/loader/Cargo.toml b/tests/module/loader/Cargo.toml index 180b2e9..b51f002 100644 --- a/tests/module/loader/Cargo.toml +++ b/tests/module/loader/Cargo.toml @@ -2,7 +2,7 @@ name = "module_loader" version = "0.0.0" authors = ["Aleksandr Orlenko "] -edition = "2018" +edition = "2021" [features] lua54 = ["mlua/lua54"]