-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 877 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
36
37
[package]
name = "dota-gsi"
version = "0.1.4"
authors = ["Tomas Farias <[email protected]>"]
edition = "2021"
description = "Game State Integration with Dota 2 in rust. Provides a server that listens for JSON events sent by Dota 2."
readme = "README.md"
repository = "https://github.com/tomasfarias/dota-gsi"
license-file = "LICENSE"
keywords = ["dota"]
[lib]
name = "dota"
path = "src/lib.rs"
[[bin]]
name = "echoslam"
path = "src/bin/echoslam.rs"
[[bin]]
name = "recall"
path = "src/bin/recall.rs"
[dependencies]
async-trait = "^0.1.70"
bytes = "1"
chrono = "^0.4"
clap = { version = "^4.3", features = ["derive"] }
env_logger = "^0.10"
httparse = "^1.8"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
thiserror = "^1.0"
tokio = { version = "1", features = ["net", "rt", "macros", "rt-multi-thread", "io-util", "fs", "sync"] }