rust/hedgewars-checker/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 16:24:09 +0200
changeset 15252 c10e9261ab9c
parent 14228 bb2f301d4fe0
child 15833 a855f32ab3ca
permissions -rw-r--r--
Make lowest line of Splash image frames transparent to work around scaling issues The Splash image is scaled. Sometimes, the lowest line is repeated on the top, which caused some weird lines to appear above big splashes (e.g. piano). This has been done fully automated with a script. Only the alpha channel was changed. The color information is preserved.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13973
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"
13978
a4877a16564d Also report chat and added rooms in log
unc0rr
parents: 13974
diff changeset
     3
version = "1.0.0"
13974
e98e2fc556a7 Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.
unc0rr
parents: 13973
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
14228
bb2f301d4fe0 2018ize everything
alfadur
parents: 13978
diff changeset
     5
edition = "2018"
13973
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"
13974
e98e2fc556a7 Create replay file, run engine, result from it and send it to the server. Not implemented: filtering of engine output.
unc0rr
parents: 13973
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: 13973
diff changeset
    15
base64 = "0.9.3"