gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 Aug 2018 05:46:33 +0200
changeset 13711 0da36902e5b6
parent 13666 09f4a30e50cc
child 13713 59ea2403f62d
permissions -rw-r--r--
Space Invasion: Continue playing rounds in case the teams are tied at the end Rules in case of a tie: 1) Eliminate all teams not tied for the lead 2) Play another round with the remaining teams 3) Check for the winner again at the end of that round. If there's another tie, repeat the procedure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13529
diff changeset
     1
cargo-features = ["edition"]
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13529
diff changeset
     2
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     3
[package]
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13529
diff changeset
     4
edition = "2018"
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     5
name = "hedgewars-server"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     6
version = "0.0.1"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     7
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     8
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     9
[dependencies]
13435
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13425
diff changeset
    10
rand = "0.5"
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    11
mio = "0.6"
12757
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    12
slab = "0.4"
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13529
diff changeset
    13
netbuf = "0.4"
13439
c4f917c6be51 add missing message tests
alfadur
parents: 13437
diff changeset
    14
nom = "4.0"
12757
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    15
env_logger = "0.4"
13435
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13425
diff changeset
    16
log = "0.4"
13437
a0c3431f60ac update proptest
alfadur
parents: 13435
diff changeset
    17
proptest = "0.8"
a0c3431f60ac update proptest
alfadur
parents: 13435
diff changeset
    18
base64 = "0.9"
13493
282e5e54386f Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents: 13439
diff changeset
    19
bitflags = "1.0"
13529
662f7df89d06 Implement room config export
alfadur
parents: 13493
diff changeset
    20
serde = "1.0"
662f7df89d06 Implement room config export
alfadur
parents: 13493
diff changeset
    21
serde_yaml = "0.7"
662f7df89d06 Implement room config export
alfadur
parents: 13493
diff changeset
    22
serde_derive = "1.0"