-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.08 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
[package]
name = "tine"
version = "0.1.0"
edition = "2021"
authors = ["Sergio Ivanuzzo <sergio.ivanuzzo@gmail.com>"]
description = "TINE IS NOT EMULATOR, it is just a tiny wow server for v3.3.5a (currently only this version)"
readme = "README.md"
keywords = ["idewave", "wow-server"]
license-file = "LICENSE"
repository = "https://github.com/idewave/tine"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
arc4 = "0.1.0"
async-broadcast = "0.7.1"
async-trait = "0.1.77"
bitflags = "2.4.2"
byteorder = "1.4.3"
colored = "3.0.0"
flate2 = "1.0.24"
futures = "0.3.21"
hmac-sha = "0.6.1"
num-bigint = "0.4.3"
num-traits = "0.2.18"
rand = "0.9.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
sha-1 = "0.9.8"
tentacli-crypto = "0.1.0"
tentacli-formatters = "0.1.0"
tentacli-packet = "7.0.0"
tentacli-traits = "9.2.1"
tentacli-utils = "2.1.0"
tokio = { version = "1", features = ["sync", "net", "io-util", "macros", "time", "rt-multi-thread"] }
[features]
# use this feature to turn on println
debug = []