-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (47 loc) · 1.18 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
[package]
name = "world-host-server"
version = "0.5.0"
edition = "2021"
description = "Server software for World Host"
[dependencies]
# Utilities
chrono = "0.4"
try-catch = "0.2"
lazy_static = "1.5"
case_insensitive_hashmap = "1.0"
unicase = "2.8"
anyhow = "1.0"
# Logging
log = "0.4"
log4rs = { version = "1.3", features = ["gzip", "background_rotation"] }
# Argument parsing
clap = { version = "4.5", features = ["derive", "wrap_help", "string"] }
parse_duration = "2.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Http
reqwest = { version = "0.12", features = ["json", "stream"] }
csv-async = "1.3"
futures = "0.3"
async-compression = { version = "0.4", features = ["gzip", "tokio"] }
tokio-util = { version = "0.7", features = ["compat"] }
querystring = "1.1"
# Cryptography
rsa = "0.9"
rand = "0.8"
sha1 = "0.10"
aes = "0.7"
cfb8 = "0.7"
cipher = { version = "0.3", features = ["std"] }
# Funny handshake libraries
num-bigint = "0.4"
md-5 = "0.10"
# Application
tokio = { version = "1.42", features = ["full"] }
uuid = { version = "1.11", features = ["serde"] }
socket2 = "0.5"
byteorder = "1.5"
linked_hash_set = "0.1"
queues = "1.1"