[package]
edition = "2024"
rust-version = "1.88"
name = "lightyear_steam"
version = "0.26.2"
authors = ["Charles Bournhonesque <charlesbour@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Connection handling for the lightyear networking library"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/cBournhonesque/lightyear"
[package.metadata.docs.rs]
all-features = true
[features]
client = [
"aeronet_io",
"aeronet_steam/client",
"lightyear_aeronet",
"lightyear_core",
"lightyear_link",
"lightyear_connection/client",
]
default = ["std"]
server = [
"aeronet_io",
"aeronet_steam/server",
"lightyear_aeronet",
"lightyear_core",
"lightyear_link",
"lightyear_connection/server",
]
std = []
[lib]
name = "lightyear_steam"
path = "src/lib.rs"
[dependencies.aeronet_io]
version = "0.19"
optional = true
[dependencies.aeronet_steam]
version = "0.19"
[dependencies.bevy_app]
version = "0.18"
default-features = false
[dependencies.bevy_ecs]
version = "0.18"
default-features = false
[dependencies.lightyear_aeronet]
version = "0.26.2"
optional = true
default-features = false
[dependencies.lightyear_connection]
version = "0.26.2"
optional = true
default-features = false
[dependencies.lightyear_core]
version = "0.26.2"
optional = true
default-features = false
[dependencies.lightyear_link]
version = "0.26.2"
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.3"
[dependencies.tracing]
version = "0.1.40"
[lints.clippy]
alloc_instead_of_core = "warn"
len_without_is_empty = "allow"
missing_transmute_annotations = "allow"
module_inception = "allow"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.rust]
dead_code = "allow"
unused_variables = "allow"