rust/hedgewars-checker/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Tue, 27 Aug 2019 23:16:42 +0200
changeset 15370 5a934f83d5eb
parent 14207 bb2f301d4fe0
child 15811 a855f32ab3ca
permissions -rw-r--r--
Tempoary (!!!) workaround for incorrect key combination description in frontend This workaround fixes the incorrect string while preserving translations and the 1.0.0 string freeze. Remember to revert this commit and fix the string in binds.cpp after the 1.0.0 release!
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"