forked from awestlake87/sc2-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (50 loc) · 1.06 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
[package]
name = "sc2"
version = "0.4.0-alpha.3"
authors = ["Andrew J Westlake <[email protected]>"]
description = "Rust implementation of the StarCraft II Client API"
license = "MIT"
documentation = "https://docs.rs/sc2-rs"
homepage = "https://github.com/awestlake87/sc2-rs"
repository = "https://github.com/awestlake87/sc2-rs"
[dependencies]
bytes = "0"
colored = "1.6"
ctrlc = "3"
error-chain = "0.11"
futures-await = "0.1"
glob = "0.2"
nalgebra = "0.13"
protobuf = "1.4"
rand = "0.4"
regex = "0.2"
sc2-proto = "0.1"
tokio-core = "0.1"
tokio-timer = "0.1"
tokio-tungstenite = "0.5"
tungstenite = "0.5"
url = "1.6"
[dev-dependencies]
docopt = "0.8"
serde = "1.0"
serde_derive = "1.0"
[[example]]
name = "bot-micro"
crate-type = ["bin"]
path = "examples/bot-micro.rs"
[[example]]
name = "bot-mp"
crate-type = ["bin"]
path = "examples/bot-mp.rs"
[[example]]
name = "bot-simple"
crate-type = ["bin"]
path = "examples/bot-simple.rs"
[[example]]
name = "debug"
crate-type = ["bin"]
path = "examples/debug.rs"
[[example]]
name = "replay"
crate-type = ["bin"]
path = "examples/replay.rs"