[package]
edition = "2021"
name = "flatland-client-lib"
version = "0.2.3"
authors = ["Barry Velasquez"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flatland3 remote game client library (TCP session, bots, game state)"
readme = "README.md"
keywords = [
"game",
"mmorpg",
"client",
]
categories = [
"game-development",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bvelasquez/flatland3"
[lib]
name = "flatland_client_lib"
path = "src/lib.rs"
[[test]]
name = "connect_stress"
path = "tests/connect_stress.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.flatland-protocol]
version = "0.2.3"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"full",
"net",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["serde"]
[dev-dependencies.dirs]
version = "6"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
"time",
]