author | Wuzzy <Wuzzy@disroot.org> |
Thu, 24 Aug 2023 20:12:28 +0200 | |
changeset 15977 | f81fe8250ed9 |
parent 15936 | c5c53ebb2d91 |
child 15986 | cd8392e52165 |
permissions | -rw-r--r-- |
12125 | 1 |
[package] |
15831 | 2 |
edition = "2021" |
12125 | 3 |
name = "hedgewars-server" |
15804 | 4 |
version = "0.9.0" |
12125 | 5 |
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ] |
6 |
||
13798 | 7 |
[features] |
15936 | 8 |
tls-connections = ["tokio-native-tls"] |
9 |
official-server = ["mysql_async", "sha1", "tls-connections"] |
|
13799 | 10 |
default = [] |
13798 | 11 |
|
12125 | 12 |
[dependencies] |
15831 | 13 |
base64 = "0.13" |
14 |
bitflags = "1.3" |
|
15 |
bytes = "1.1" |
|
15517 | 16 |
chrono = "0.4" |
15795 | 17 |
env_logger = "0.8" |
15831 | 18 |
getopts = "0.2" |
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
19 |
log = "0.4" |
15833 | 20 |
mysql_async = { version = "0.29.0", optional = true } |
15831 | 21 |
nom = "7.1" |
22 |
rand = "0.8" |
|
13529 | 23 |
serde = "1.0" |
13797 | 24 |
serde_yaml = "0.8" |
13529 | 25 |
serde_derive = "1.0" |
15833 | 26 |
sha1 = { version = "0.10.0", optional = true } |
15831 | 27 |
slab = "0.4" |
28 |
tokio = { version = "1.16", features = ["full"]} |
|
15936 | 29 |
tokio-native-tls = { version = "0.3", optional = true } |
15831 | 30 |
|
15804 | 31 |
hedgewars-network-protocol = { path = "../hedgewars-network-protocol" } |
13796 | 32 |
|
33 |
[dev-dependencies] |
|
15801 | 34 |
proptest = "1.0" |