[package] name = "lightyear_examples_common" version = "0.17.1" authors = ["Charles Bournhonesque "] edition = "2021" rust-version = "1.76" description = "Common harness for the lightyear examples" readme = "../README.md" repository = "https://github.com/cBournhonesque/lightyear" keywords = ["bevy", "multiplayer", "networking", "netcode", "gamedev"] categories = ["game-development", "network-programming"] license = "MIT OR Apache-2.0" exclude = ["/tests"] [dependencies] lightyear = { version = "0.17.1", path = "../../lightyear", features = [ "steam", "webtransport", "websocket", ] } # utils anyhow = { version = "1.0.75", features = [] } async-compat = "0.2.3" cfg-if = "1.0.0" clap = { version = "4.5.4", features = ["derive"] } crossbeam-channel = "0.5.12" rand = "0.8.5" serde = { version = "1.0.201", features = ["derive"] } # bevy bevy = { version = "0.14", default-features = true, features = [ "multi_threaded", "bevy_state", "serialize", ] } bevy-inspector-egui = "0.25"