0.4.1 release

Fix docs.rs build features
Update Cargo.toml description
This commit is contained in:
Alex Orlenko 2020-06-08 11:31:10 +01:00
parent 1d9fed2207
commit 4265250cfd
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.4.0"
version = "0.4.1"
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
edition = "2018"
repository = "https://github.com/khvzak/mlua"
@ -12,7 +12,7 @@ license = "MIT"
links = "lua"
build = "build/main.rs"
description = """
High level bindings to Lua 5.1/5.2/5.3/5.4 (including LuaJIT)
High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT)
with async/await features and support of writing native lua modules in Rust.
"""
@ -21,7 +21,7 @@ with async/await features and support of writing native lua modules in Rust.
maintenance = { status = "actively-developed" }
[package.metadata.docs.rs]
features = ["async"]
features = ["async", "send", "lua53"]
[workspace]
members = [

View File

@ -903,7 +903,7 @@ impl Lua {
/// ```
///
/// [`Thread`]: struct.Thread.html
/// [`ThreadStream`]: struct.ThreadStream.html
/// [`AsyncThread`]: struct.AsyncThread.html
#[cfg(feature = "async")]
pub fn create_async_function<'lua, 'callback, A, R, F, FR>(
&'lua self,