rust/hedgewars-network-protocol/Cargo.toml
author S.D.
Tue, 27 Sep 2022 14:59:03 +0300
changeset 15878 fc3cb23fd26f
parent 15830 ea459da15b30
permissions -rw-r--r--
Allow to see rooms of incompatible versions in the lobby For the new clients the room version is shown in a separate column. There is also a hack for previous versions clients: the room vesion specifier is prepended to the room names for rooms of incompatible versions, and the server shows 'incompatible version' error if the client tries to join them.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15804
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     1
[package]
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     2
name = "hedgewars-network-protocol"
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     3
version = "0.1.0"
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
15830
ea459da15b30 update protocol 📦
alfadur
parents: 15804
diff changeset
     5
edition = "2021"
15804
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     6
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     7
[dependencies]
15830
ea459da15b30 update protocol 📦
alfadur
parents: 15804
diff changeset
     8
nom = "7.1"
15804
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
     9
serde_derive = "1.0"
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
    10
serde = "1.0"
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
    11
15830
ea459da15b30 update protocol 📦
alfadur
parents: 15804
diff changeset
    12
[dev-dependencies]
15804
747278149393 Extract network protocol into a separate crate
unc0rr
parents:
diff changeset
    13
proptest = "1.0"