Skip to content

Commit 4e5677a

Browse files
committed
Update references to mlua repo
1 parent 49958f4 commit 4e5677a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.10.3" # remember to update mlua_derive
44
authors = ["Aleksandr Orlenko <[email protected]>", "kyren <[email protected]>"]
55
rust-version = "1.79.0"
66
edition = "2021"
7-
repository = "https://github.com/khvzak/mlua"
7+
repository = "https://github.com/mlua-rs/mlua"
88
documentation = "https://docs.rs/mlua"
99
readme = "README.md"
1010
keywords = ["lua", "luajit", "luau", "async", "scripting"]

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# mlua
22
[![Build Status]][github-actions] [![Latest Version]][crates.io] [![API Documentation]][docs.rs] [![Coverage Status]][codecov.io] ![MSRV]
33

4-
[Build Status]: https://github.com/khvzak/mlua/workflows/CI/badge.svg
5-
[github-actions]: https://github.com/khvzak/mlua/actions
4+
[Build Status]: https://github.com/mlua-rs/mlua/workflows/CI/badge.svg
5+
[github-actions]: https://github.com/mlua-rs/mlua/actions
66
[Latest Version]: https://img.shields.io/crates/v/mlua.svg
77
[crates.io]: https://crates.io/crates/mlua
88
[API Documentation]: https://docs.rs/mlua/badge.svg
@@ -21,7 +21,7 @@
2121

2222
> **Note**
2323
>
24-
> See v0.10 [release notes](https://github.com/khvzak/mlua/blob/main/docs/release_notes/v0.10.md).
24+
> See v0.10 [release notes](https://github.com/mlua-rs/mlua/blob/main/docs/release_notes/v0.10.md).
2525
2626
`mlua` is bindings to [Lua](https://www.lua.org) programming language for Rust with a goal to provide
2727
_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
3232

3333
WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for all Lua versions excluding JIT.
3434

35-
[GitHub Actions]: https://github.com/khvzak/mlua/actions
35+
[GitHub Actions]: https://github.com/mlua-rs/mlua/actions
3636
[Luau]: https://luau.org
3737

3838
## Usage
@@ -67,8 +67,8 @@ Below is a list of the available feature flags. By default `mlua` does not enabl
6767
[5.1]: https://www.lua.org/manual/5.1/manual.html
6868
[LuaJIT]: https://luajit.org/
6969
[Luau]: https://github.com/luau-lang/luau
70-
[lua-src]: https://github.com/khvzak/lua-src-rs
71-
[luajit-src]: https://github.com/khvzak/luajit-src-rs
70+
[lua-src]: https://github.com/mlua-rs/lua-src-rs
71+
[luajit-src]: https://github.com/mlua-rs/luajit-src-rs
7272
[tokio]: https://github.com/tokio-rs/tokio
7373
[async-std]: https://github.com/async-rs/async-std
7474
[`Send`]: https://doc.rust-lang.org/std/marker/trait.Send.html

docs/release_notes/v0.10.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The v0.10 version of mlua has goal to improve the user experience while keeping the same performance and safety guarantees.
44
This document highlights the most notable features. For a full list of changes, see the [CHANGELOG].
55

6-
[CHANGELOG]: https://github.com/khvzak/mlua/blob/main/CHANGELOG.md
6+
[CHANGELOG]: https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md
77

88
### New features
99

docs/release_notes/v0.9.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
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.
44
This document highlights the most important changes. For a full list of changes, see the [CHANGELOG].
55

6-
[CHANGELOG]: https://github.com/khvzak/mlua/blob/main/CHANGELOG.md
6+
[CHANGELOG]: https://github.com/mlua-rs/mlua/blob/main/CHANGELOG.md
77

88
### New features
99

@@ -304,7 +304,7 @@ assert_eq!(f.call::<_, mlua::String>(())?, "hello");
304304

305305
The new mlua version has a number of performance improvements. Please check the [benchmarks results] to see how mlua compares to rlua and rhai.
306306

307-
[benchmarks results]: https://github.com/khvzak/script-bench-rs
307+
[benchmarks results]: https://github.com/mlua-rs/script-bench-rs
308308

309309
### Changes in `module` mode
310310

mlua-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.6.7"
44
authors = ["Aleksandr Orlenko <[email protected]>"]
55
rust-version = "1.71"
66
edition = "2021"
7-
repository = "https://github.com/khvzak/mlua"
7+
repository = "https://github.com/mlua-rs/mlua"
88
documentation = "https://docs.rs/mlua-sys"
99
readme = "README.md"
1010
categories = ["external-ffi-bindings"]

mlua_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.10.1"
44
authors = ["Aleksandr Orlenko <[email protected]>"]
55
edition = "2021"
66
description = "Procedural macros for the mlua crate."
7-
repository = "https://github.com/khvzak/mlua"
7+
repository = "https://github.com/mlua-rs/mlua"
88
keywords = ["lua", "mlua"]
99
license = "MIT"
1010

0 commit comments

Comments
 (0)