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