[package] name = "rollo" version = "0.13.6" edition = "2018" license = "MIT" readme = "README.md" description = "A Rust-based multiplayer framework." keywords = ["game", "gamedev", "server", "network", "multiplayer"] categories = ["game-development", "games", "asynchronous", "concurrency"] repository = "https://github.com/netskillzgh/rollo" authors = ["Netskillz "] [features] default = [] full = [ "server", "game", "macros", "flatbuffers_helpers" ] macros = [] server = [ "tokio-rustls", "bytes", "async-trait", "tokio", "game", "rustls-pemfile", "once_cell", "easy-pool" ] game = [ "parking_lot", "indexmap", "crossbeam", "rand", "server", "rand_xoshiro", "spin_sleep" ] flatbuffers_helpers = [ "flatbuffers", "once_cell", "crossbeam-queue", "easy-pool" ] [dependencies] tokio = { version = "1.25.0", features = ["full"], optional = true } async-trait = { version = "0.1.5", optional = true } tokio-rustls = { version = "0.23.0", optional = true } bytes = { version = "1.0.1", optional = true } rustls-pemfile = { version = "0.2.1", optional = true } crossbeam = { version = "0.8.1", optional = true } parking_lot = { version = "0.12.0", optional = true } rand = { version = "0.8.4", optional = true } flatbuffers = { version = "23.1.21", optional = true } crossbeam-queue = { version = "0.3.2", optional = true } spin_sleep = { version = "1.0.0", optional = true } log = { version = "0.4.0", default-features = false } rand_xoshiro ={ version = "0.6.0", optional = true } indexmap = { version = "1.7.0", optional = true } easy-pool = { version = "0.1.3", optional = true } once_cell = { version = "1.9.0", optional = true } [dev-dependencies] serial_test = "0.5.1" fastrand = "1.7.0" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [package.metadata.playground] features = ["full"]