[package]
edition = "2021"
name = "factorio-rcon"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async RCON client for Factorio with proper multi-packet response handling"
readme = "README.md"
keywords = [
"factorio",
"rcon",
"async",
"gaming",
]
categories = [
"network-programming",
"asynchronous",
"games",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alloc33/factorio-rcon"
[lib]
name = "factorio_rcon"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"net",
"io-util",
"time",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]