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