diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2024-05-15 23:17:30 +0100 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2024-05-15 23:17:30 +0100 |
commit | f2d48ce296697954595bcb05d255af0dc4e006a5 (patch) | |
tree | 1b3662af857c4ca900baa272d08785acf5a9ca5d | |
parent | 0fa39d431d319c2381bda2748c0d56c5c40422d5 (diff) | |
download | mlua-f2d48ce296697954595bcb05d255af0dc4e006a5.zip |
v0.9.8
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "mlua" -version = "0.9.7" # remember to update mlua_derive +version = "0.9.8" # remember to update mlua_derive authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@kyju.org>"] rust-version = "1.71" edition = "2021" @@ -133,7 +133,7 @@ Add to `Cargo.toml` : ``` toml [dependencies] -mlua = { version = "0.9.7", features = ["lua54", "vendored"] } +mlua = { version = "0.9.8", features = ["lua54", "vendored"] } ``` `main.rs` @@ -168,7 +168,7 @@ Add to `Cargo.toml` : crate-type = ["cdylib"] [dependencies] -mlua = { version = "0.9.7", features = ["lua54", "module"] } +mlua = { version = "0.9.8", features = ["lua54", "module"] } ``` `lib.rs` : |