[package]
edition = "2021"
name = "flatland-protocol"
version = "0.2.3"
authors = ["Barry Velasquez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flatland3 wire protocol types and codecs"
readme = "README.md"
keywords = [
"game",
"mmorpg",
"protocol",
"networking",
]
categories = [
"game-development",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bvelasquez/flatland3"
[lib]
name = "flatland_protocol"
path = "src/lib.rs"
[[test]]
name = "frame_sizes"
path = "tests/frame_sizes.rs"
[[test]]
name = "message_roundtrip"
path = "tests/message_roundtrip.rs"
[[bench]]
name = "codec_bench"
path = "benches/codec_bench.rs"
harness = false
[dependencies.bincode]
version = "1.3"
[dependencies.bytes]
version = "1"
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"io-util",
]
[dependencies.uuid]
version = "1"
features = ["serde"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt",
"io-util",
]