gameServer2/Cargo.toml
author Wuzzy <almikes@aol.com>
Sat, 15 Apr 2017 04:28:00 +0200
changeset 12253 8e9603088f99
parent 12137 193dfdcb0620
child 12757 6f4ab0339c16
permissions -rw-r--r--
Make all hogs say Yessir taunt on their turn start (replaces revenge taunts) Rationale: The taunts Illgetyou, JustYouWait were fairly odd and almost always inapproriate to the situation as most voicepacks clearly assume these to be used for revenge only (e.g. “You'll gonna pay for that.” was played at turn start because of this.).
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"
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     9
slab = "0.3"
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    10
netbuf = "0.3.8"
12133
81df2e1f9ae9 Some parsing using nom
unc0rr
parents: 12132
diff changeset
    11
nom = "2.0"
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    12
env_logger = "0.3.5"
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    13
log = "0.3.6"