gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Mar 2018 19:05:59 +0100
changeset 13145 5083fb0a2992
parent 13119 1e39b8749072
child 13425 50f852e7ad82
permissions -rw-r--r--
A Classic Fairytale: Harden all missions against missing campaign variables in team file and assume default values This assumes the worst case in which the team file is missing all campaign variables except Progress. This has been successfully tested with all 10 missions and still generates a logical storyline. By default, the game assumes: - The cyborg's offer in mission 2 was refused - The traitor in mission 5 was killed As a consequence, missions 8 and 10 use the princessScene cut scene.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     1
[package]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     2
name = "hedgewars-server"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     3
version = "0.0.1"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     4
authors = [ "Andrey Korotaev <a.korotaev@hedgewars.org>" ]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     5
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     6
[dependencies]
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     7
rand = "0.3"
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     8
mio = "0.6"
12757
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
     9
slab = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    10
netbuf = "0.4.0"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    11
nom = "3.2"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    12
env_logger = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12137
diff changeset
    13
log = "0.3.8"
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12757
diff changeset
    14
proptest = "0.5.1"