author | alfadur |
Sun, 09 Sep 2018 01:20:35 +0300 | |
changeset 13806 | 5fb40c8e5542 |
parent 13804 | c8fd12db6215 |
child 13809 | 201d86010a8b |
permissions | -rw-r--r-- |
13671 | 1 |
cargo-features = ["edition"] |
2 |
||
12130 | 3 |
[package] |
13671 | 4 |
edition = "2018" |
12130 | 5 |
name = "hedgewars-server" |
6 |
version = "0.0.1" |
|
7 |
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ] |
|
8 |
||
13803 | 9 |
[features] |
10 |
official-server = [] |
|
13804 | 11 |
tls-connections = ["openssl"] |
12 |
default = [] |
|
13803 | 13 |
|
12130 | 14 |
[dependencies] |
13440
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13430
diff
changeset
|
15 |
rand = "0.5" |
12130 | 16 |
mio = "0.6" |
12762 | 17 |
slab = "0.4" |
13671 | 18 |
netbuf = "0.4" |
13444 | 19 |
nom = "4.0" |
13802 | 20 |
env_logger = "0.5" |
13440
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13430
diff
changeset
|
21 |
log = "0.4" |
13442 | 22 |
base64 = "0.9" |
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13444
diff
changeset
|
23 |
bitflags = "1.0" |
13534 | 24 |
serde = "1.0" |
13802 | 25 |
serde_yaml = "0.8" |
13534 | 26 |
serde_derive = "1.0" |
13804 | 27 |
openssl = { version = "0.10", optional = true } |
13801 | 28 |
|
29 |
[dev-dependencies] |
|
30 |
proptest = "0.8" |