forked from tickbh/tunm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 799 Bytes
/
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
[package]
name = "tdengine"
version = "0.1.0"
authors = [ "tickbh <[email protected]>" ]
description = "game server for Rust"
repository = "https://github.com/tickbh/tdengine"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["gameserver", "server", "lua", "rust+lua"]
[features]
default = ["mysql"]
[dependencies]
libc = "^0.2"
time = "0.1.33"
rustc-serialize = "0.3.16"
net2 = { version = "0.2.23", default-features = false }
rust-crypto = "^0.2"
tiny_http = { version = "0.5", default-features = false }
td_rlua = "0.1.0"
td_revent = "0.1.1"
td_proto_rust = "0.1.0"
td_rredis = "0.1.0"
td_rthreadpool = "0.1.0"
[dependencies.mysql]
version = "2.2.1"
default-features = false
features = [""]
optional = true
[dependencies.td_clua_ext]
version = "0.1.0"
path = "td_clua_ext"