gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Mon, 17 Sep 2018 22:37:47 +0200
changeset 13790 4ed202f0428e
parent 13671 09f4a30e50cc
child 13801 59ea2403f62d
permissions -rw-r--r--
Easier back jumps in Basic Movement Training (fixes bug #692) The explanation of Back Jumping (2/2) has been simplified and the "hard" part has been made easier by lowering the girders. The original idea was that I wanted to force players to learn how to jump higher by delaying the 2nd backspace keypress. But this turned out that this section was too unfair and we have lost at least one player due to rage-quitting, according to feedback.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13671
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13534
diff changeset
     1
cargo-features = ["edition"]
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13534
diff changeset
     2
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     3
[package]
13671
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13534
diff changeset
     4
edition = "2018"
12130
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]
13440
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13430
diff changeset
    10
rand = "0.5"
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    11
mio = "0.6"
12762
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    12
slab = "0.4"
13671
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13534
diff changeset
    13
netbuf = "0.4"
13444
c4f917c6be51 add missing message tests
alfadur
parents: 13442
diff changeset
    14
nom = "4.0"
12762
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    15
env_logger = "0.4"
13440
2e5a5eee8d80 Update rand and log to the latest versions
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13430
diff changeset
    16
log = "0.4"
13442
a0c3431f60ac update proptest
alfadur
parents: 13440
diff changeset
    17
proptest = "0.8"
a0c3431f60ac update proptest
alfadur
parents: 13440
diff changeset
    18
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
    19
bitflags = "1.0"
13534
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    20
serde = "1.0"
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    21
serde_yaml = "0.7"
662f7df89d06 Implement room config export
alfadur
parents: 13527
diff changeset
    22
serde_derive = "1.0"