author | alfadur |
Wed, 05 Sep 2018 18:09:06 +0300 | |
changeset 13769 | c5edfcfac68b |
parent 13713 | 59ea2403f62d |
child 13771 | 4664da990556 |
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 |
||
9 |
[dependencies] |
|
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
10 |
rand = "0.5" |
12125 | 11 |
mio = "0.6" |
12757 | 12 |
slab = "0.4" |
13666 | 13 |
netbuf = "0.4" |
13439 | 14 |
nom = "4.0" |
13769 | 15 |
env_logger = "0.5" |
13435
2e5a5eee8d80
Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13425
diff
changeset
|
16 |
log = "0.4" |
13437 | 17 |
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
|
18 |
bitflags = "1.0" |
13529 | 19 |
serde = "1.0" |
13769 | 20 |
serde_yaml = "0.8" |
13529 | 21 |
serde_derive = "1.0" |
13713 | 22 |
|
23 |
[dev-dependencies] |
|
24 |
proptest = "0.8" |