author | alfadur |
Wed, 05 Sep 2018 19:22:29 +0300 | |
changeset 13771 | 4664da990556 |
parent 13769 | c5edfcfac68b |
child 13773 | c8fd12db6215 |
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 = [] |
|
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" |
13439 | 17 |
nom = "4.0" |
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" |
13437 | 20 |
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
|
21 |
bitflags = "1.0" |
13529 | 22 |
serde = "1.0" |
13769 | 23 |
serde_yaml = "0.8" |
13529 | 24 |
serde_derive = "1.0" |
13713 | 25 |
|
26 |
[dev-dependencies] |
|
27 |
proptest = "0.8" |