gameServer2/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Tue, 24 Jul 2018 20:07:58 +0200
branch0.9.24
changeset 13555 d42237d16acf
parent 13124 1e39b8749072
child 13430 50f852e7ad82
permissions -rw-r--r--
Limit max droplet count to 50 (fix for 0.9.24 branch only) This fixes the issue with insane amounts of droplets in 0.9.24. It's temporary, the real fix is in default branch, but would be desyncing.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12130
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"
12762
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
     9
slab = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    10
netbuf = "0.4.0"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    11
nom = "3.2"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    12
env_logger = "0.4"
6f4ab0339c16 Modernize Cargo.toml a bit
unc0rr
parents: 12142
diff changeset
    13
log = "0.3.8"
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12762
diff changeset
    14
proptest = "0.5.1"