gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 22:49:39 +0200
changeset 12779 1f8a62d1609d
parent 12757 6f4ab0339c16
child 13119 1e39b8749072
permissions -rw-r--r--
ACF5: Fix final animation being stuck when the cyborg's way to the right is blocked Fixed with the new maxMoveTime parameter in AnimMove. If cyborg didn't reach its destination in 7000ms, the move anim is skipped and the sequence just continues.
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"
12757
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
     9
slab = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    10
netbuf = "0.4.0"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    11
nom = "3.2"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    12
env_logger = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    13
log = "0.3.8"