gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Jul 2018 18:01:32 +0200
changeset 13563 af92481415ef
parent 13534 662f7df89d06
child 13671 09f4a30e50cc
permissions -rw-r--r--
TechRacer: Fix gears not spawning on turn start when player pressed control right at start The activationStage was horribly programmed and heavily relied on timer. There was a sweet spot at turn start that if you managed to push a key right at the start of turn, you skip the Ready phase and the activationStage would advance, causing the gear spawning code to be skipped. This fix greatly simplies the spawning phase.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12130
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]
13440
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13430
diff changeset
     7
rand = "0.5"
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     8
mio = "0.6"
12762
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
     9
slab = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    10
netbuf = "0.4.0"
13444
c4f917c6be51 add missing message tests
alfadur
parents: 13442
diff changeset
    11
nom = "4.0"
12762
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    12
env_logger = "0.4"
13440
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13430
diff changeset
    13
log = "0.4"
13442
a0c3431f60ac update proptest
alfadur
parents: 13440
diff changeset
    14
proptest = "0.8"
a0c3431f60ac update proptest
alfadur
parents: 13440
diff changeset
    15
base64 = "0.9"
13527
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13444
diff changeset
    16
bitflags = "1.0"
13534
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    17
serde = "1.0"
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    18
serde_yaml = "0.7"
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    19
serde_derive = "1.0"