diff --git a/Cargo.toml b/Cargo.toml index 49c225f..84fd595 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.10.3" # remember to update mlua_derive authors = ["Aleksandr Orlenko ", "kyren "] rust-version = "1.79.0" edition = "2021" -repository = "https://github.com/khvzak/mlua" +repository = "https://github.com/mlua-rs/mlua" documentation = "https://docs.rs/mlua" readme = "README.md" keywords = ["lua", "luajit", "luau", "async", "scripting"] diff --git a/README.md b/README.md index 747f482..1a39e86 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # mlua [![Build Status]][github-actions] [![Latest Version]][crates.io] [![API Documentation]][docs.rs] [![Coverage Status]][codecov.io] ![MSRV] -[Build Status]: https://github.com/khvzak/mlua/workflows/CI/badge.svg -[github-actions]: https://github.com/khvzak/mlua/actions +[Build Status]: https://github.com/mlua-rs/mlua/workflows/CI/badge.svg +[github-actions]: https://github.com/mlua-rs/mlua/actions [Latest Version]: https://img.shields.io/crates/v/mlua.svg [crates.io]: https://crates.io/crates/mlua [API Documentation]: https://docs.rs/mlua/badge.svg @@ -21,7 +21,7 @@ > **Note** > -> See v0.10 [release notes](https://github.com/khvzak/mlua/blob/main/docs/release_notes/v0.10.md). +> See v0.10 [release notes](https://github.com/mlua-rs/mlua/blob/main/docs/release_notes/v0.10.md). `mlua` is bindings to [Lua](https://www.lua.org) programming language for Rust with a goal to provide _safe_ (as far as it's possible), high level, easy to use, practical and flexible API. @@ -32,7 +32,7 @@ Started as `rlua` fork, `mlua` supports Lua 5.4, 5.3, 5.2, 5.1 (including LuaJIT WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for all Lua versions excluding JIT. -[GitHub Actions]: https://github.com/khvzak/mlua/actions +[GitHub Actions]: https://github.com/mlua-rs/mlua/actions [Luau]: https://luau.org ## Usage @@ -67,8 +67,8 @@ Below is a list of the available feature flags. By default `mlua` does not enabl [5.1]: https://www.lua.org/manual/5.1/manual.html [LuaJIT]: https://luajit.org/ [Luau]: https://github.com/luau-lang/luau -[lua-src]: https://github.com/khvzak/lua-src-rs -[luajit-src]: https://github.com/khvzak/luajit-src-rs +[lua-src]: https://github.com/mlua-rs/lua-src-rs +[luajit-src]: https://github.com/mlua-rs/luajit-src-rs [tokio]: https://github.com/tokio-rs/tokio [async-std]: https://github.com/async-rs/async-std [`Send`]: https://doc.rust-lang.org/std/marker/trait.Send.html diff --git a/docs/release_notes/v0.10.md b/docs/release_notes/v0.10.md index c2e0900..db01e8b 100644 --- a/docs/release_notes/v0.10.md +++ b/docs/release_notes/v0.10.md @@ -3,7 +3,7 @@ The v0.10 version of mlua has goal to improve the user experience while keeping the same performance and safety guarantees. This document highlights the most notable features. For a full list of changes, see the [CHANGELOG]. -[CHANGELOG]: https://github.com/khvzak/mlua/blob/main/CHANGELOG.md +[CHANGELOG]: https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md ### New features diff --git a/docs/release_notes/v0.9.md b/docs/release_notes/v0.9.md index 33c6a2a..cbc2d29 100644 --- a/docs/release_notes/v0.9.md +++ b/docs/release_notes/v0.9.md @@ -3,7 +3,7 @@ The v0.9 version of mlua is a major release that includes a number of API changes and improvements. This release is a stepping stone towards the v1.0. This document highlights the most important changes. For a full list of changes, see the [CHANGELOG]. -[CHANGELOG]: https://github.com/khvzak/mlua/blob/main/CHANGELOG.md +[CHANGELOG]: https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md ### New features @@ -304,7 +304,7 @@ assert_eq!(f.call::<_, mlua::String>(())?, "hello"); The new mlua version has a number of performance improvements. Please check the [benchmarks results] to see how mlua compares to rlua and rhai. -[benchmarks results]: https://github.com/khvzak/script-bench-rs +[benchmarks results]: https://github.com/mlua-rs/script-bench-rs ### Changes in `module` mode diff --git a/mlua-sys/Cargo.toml b/mlua-sys/Cargo.toml index dc038dc..6bdcbe6 100644 --- a/mlua-sys/Cargo.toml +++ b/mlua-sys/Cargo.toml @@ -4,7 +4,7 @@ version = "0.6.7" authors = ["Aleksandr Orlenko "] rust-version = "1.71" edition = "2021" -repository = "https://github.com/khvzak/mlua" +repository = "https://github.com/mlua-rs/mlua" documentation = "https://docs.rs/mlua-sys" readme = "README.md" categories = ["external-ffi-bindings"] diff --git a/mlua_derive/Cargo.toml b/mlua_derive/Cargo.toml index b53de43..59b96e8 100644 --- a/mlua_derive/Cargo.toml +++ b/mlua_derive/Cargo.toml @@ -4,7 +4,7 @@ version = "0.10.1" authors = ["Aleksandr Orlenko "] edition = "2021" description = "Procedural macros for the mlua crate." -repository = "https://github.com/khvzak/mlua" +repository = "https://github.com/mlua-rs/mlua" keywords = ["lua", "mlua"] license = "MIT"