-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "mlua_actor"
version = "0.1.3"
license = "MIT"
authors = ["JunYi JohnTeee Lee <johnteee@gmail.com>"]
include = ["src/**/*.rs", "Cargo.toml"]
readme = "README.md"
description = "Lua Actor for Rust(sync/async)"
documentation = "https://docs.rs/mlua_actor/"
homepage = "https://github.com/TeaEntityLab/rustMLuaActor"
repository = "https://github.com/TeaEntityLab/rustMLuaActor"
keywords = ["lua","actor","binding","async"]
[badges.maintenance]
status = "actively-developed"
[lib]
name = "mlua_actor"
path = "src/lib.rs"
[features]
default = [ "lua54", "vendored" ]
lua54 = [ "mlua/lua54" ]
lua53 = [ "mlua/lua53" ]
lua52 = [ "mlua/lua52" ]
lua51 = [ "mlua/lua51" ]
luajit = [ "mlua/luajit" ]
vendored = ["mlua/vendored"]
[dependencies]
mlua = { version = "^0.6.2", features = [ "send" ] }
fp_rust = "^0.1.40"
[build-dependencies]
cc = { version = "1.0" }
pkg-config = { version = "0.3.17" }