author | nemo |
Tue, 01 Jan 2019 11:17:28 -0500 | |
branch | 0.9.25 |
changeset 14508 | 666b31c58de8 |
parent 14350 | 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 |
||
13798 | 7 |
[features] |
13804 | 8 |
official-server = ["openssl"] |
13799 | 9 |
tls-connections = ["openssl"] |
10 |
default = [] |
|
13798 | 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" |
14045 | 17 |
nom = "4.1" |
14350 | 18 |
env_logger = "0.6" |
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
19 |
log = "0.4" |
14045 | 20 |
base64 = "0.10" |
13522
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" |
13797 | 23 |
serde_yaml = "0.8" |
13529 | 24 |
serde_derive = "1.0" |
13799 | 25 |
openssl = { version = "0.10", optional = true } |
13796 | 26 |
|
27 |
[dev-dependencies] |
|
28 |
proptest = "0.8" |