gameServer2/Cargo.toml
author Wuzzy <almikes@aol.com>
Sat, 30 Sep 2017 23:52:08 +0200
changeset 12622 07fdda8c13a2
parent 12137 193dfdcb0620
child 12757 6f4ab0339c16
permissions -rw-r--r--
TrophyRace: Fix game never eliminating any hogs after a hog skipped or ran out of time Warning: This commit _might_ invalidate past records, but I'm not sure if this is actually the case. Note that only the eliminiation part of the script is touched, not the actual race logic. Even if records are actually broken by this, I and sheepluva have decided that it's more imporant to fix this very, VERY stupid and old bug than to preserve records.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     1
[package]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     2
name = "hedgewars-server"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     3
version = "0.0.1"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     4
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     5
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     6
[dependencies]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     7
rand = "0.3"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     8
mio = "0.6"
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     9
slab = "0.3"
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    10
netbuf = "0.3.8"
12133
81df2e1f9ae9 Some parsing using nom
unc0rr
parents: 12132
diff changeset
    11
nom = "2.0"
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    12
env_logger = "0.3.5"
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    13
log = "0.3.6"