-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (53 loc) · 1.6 KB
/
Cargo.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "hyper_lua_actor"
version = "0.3.2"
license = "MIT"
authors = ["JunYi JohnTeee Lee <johnteee@gmail.com>"]
edition = "2018"
include = ["src/**/*.rs", "Cargo.toml"]
readme = "README.md"
description = "Binding of lua_actor & hyper"
documentation = "https://docs.rs/hyper_lua_actor/"
homepage = "https://github.com/TeaEntityLab/hyperLuaActor"
repository = "https://github.com/TeaEntityLab/hyperLuaActor"
keywords = ["lua","actor","binding","async", "hyper"]
[badges.maintenance]
status = "actively-developed"
[lib]
name = "hyper_lua_actor"
path = "src/lib.rs"
[features]
default = [
"lua54"
]
runtime = [
"tokio"
]
for_rlua = [
"rlua", "lua_actor",
]
lua54 = [ "mlua/lua54", "mlua_actor/lua54" ]
lua53 = [ "mlua/lua53", "mlua_actor/lua53" ]
lua52 = [ "mlua/lua52", "mlua_actor/lua52" ]
lua51 = [ "mlua/lua51", "mlua_actor/lua51" ]
luajit = [ "mlua/luajit", "mlua_actor/luajit" ]
vendored = [ "mlua/vendored" ]
[dependencies]
fp_rust="^0.1.40"
rlua={ version = "^0.17.0", features = ["default"], optional = true }
lua_actor={ version = "^0.2.3", features = ["default"], optional = true }
mlua = { version = "^0.6.2", features = [ "send" ], optional = true }
mlua_actor={ version = "^0.1.2", features = ["default"], optional = true }
hyper = { version = "^0.14.10", features = ["full"] }
futures="^0.3.15"
url="^2.2.2"
tokio = { version = "^1.8.2", features = ["full"], optional = true }
pretty_env_logger = "^0.4"
[[test]]
name = "rlua_bind"
path = "tests/rlua_bind.rs"
required-features = ["for_rlua", "runtime"]
[[test]]
name = "mlua_bind"
path = "tests/mlua_bind.rs"
required-features = ["lua54", "runtime"]