rust/hedgewars-checker/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Mon, 08 Jul 2019 21:44:26 +0200
changeset 15220 ceb289e8a582
parent 14207 bb2f301d4fe0
child 15811 a855f32ab3ca
permissions -rw-r--r--
King Mode: Fix king placement phase not working correctly with multiple teams in a clan New king placement phase rules: * Before the game begins, each team can walk with their king and teleport for free, everything else is disabled * This special round does not count towards the round counter, like in gfPlaceHog * TotalRounds is set to -1 during this round, like in gfPlaceHog Under the old rules, this was much more hacky. The delay of all delay-less weapons was just set to 1 The problem with the old rules was that if any clan had more than 1 team, eventually the weapon delay will time out before all kings have been placed.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13952
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     1
[package]
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     2
name = "hedgewars-checker"
13957
a4877a16564d Also report chat and added rooms in log
unc0rr
parents: 13953
diff changeset
     3
version = "1.0.0"
13953
e98e2fc556a7 Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.
unc0rr
parents: 13952
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
14207
bb2f301d4fe0 2018ize everything
alfadur
parents: 13957
diff changeset
     5
edition = "2018"
13952
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     6
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     7
[dependencies]
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     8
rust-ini = "0.13"
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
     9
dirs = "1.0"
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
    10
argparse = "0.2.2"
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
    11
log = "0.4"
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
    12
stderrlog = "0.4"
d12ca66054aa Start checker implementation in rust
unc0rr
parents:
diff changeset
    13
netbuf = "0.4"
13953
e98e2fc556a7 Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.
unc0rr
parents: 13952
diff changeset
    14
tempfile = "3.0"
e98e2fc556a7 Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.
unc0rr
parents: 13952
diff changeset
    15
base64 = "0.9.3"