author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 26 Nov 2018 20:40:25 +0100 | |
changeset 14323 | 8d2983ff939b |
parent 14066 | 9102b25b85f7 |
child 14371 | 31717e1436cd |
permissions | -rw-r--r-- |
12125 | 1 |
[package] |
13666 | 2 |
edition = "2018" |
12125 | 3 |
name = "hedgewars-server" |
4 |
version = "0.0.1" |
|
5 |
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ] |
|
6 |
||
13771 | 7 |
[features] |
13809 | 8 |
official-server = ["openssl"] |
13773 | 9 |
tls-connections = ["openssl"] |
10 |
default = [] |
|
13771 | 11 |
|
12125 | 12 |
[dependencies] |
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
13 |
rand = "0.5" |
12125 | 14 |
mio = "0.6" |
12757 | 15 |
slab = "0.4" |
13666 | 16 |
netbuf = "0.4" |
14066 | 17 |
nom = "4.1" |
13769 | 18 |
env_logger = "0.5" |
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
19 |
log = "0.4" |
14066 | 20 |
base64 = "0.10" |
13493
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13439
diff
changeset
|
21 |
bitflags = "1.0" |
13529 | 22 |
serde = "1.0" |
13769 | 23 |
serde_yaml = "0.8" |
13529 | 24 |
serde_derive = "1.0" |
13773 | 25 |
openssl = { version = "0.10", optional = true } |
13713 | 26 |
|
27 |
[dev-dependencies] |
|
28 |
proptest = "0.8" |