[package]
name = "lightyear_deterministic_replication"
version = "0.27.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Primitives for deterministic replication (as opposed to state replication) in the lightyear networking library"
repository = "https://github.com/cBournhonesque/lightyear"
[features]
std = [
"bevy_ecs/std",
"lightyear_inputs/std",
"lightyear_messages/std",
"lightyear_prediction/std",
]
client = [
"lightyear_connection/client",
"lightyear_inputs/client",
"lightyear_messages/client",
"lightyear_sync/client",
"lightyear_transport/client",
]
server = [
"lightyear_connection/server",
"lightyear_inputs/server",
"lightyear_messages/server",
"lightyear_replication/server",
"lightyear_sync/server",
"lightyear_transport/server",
]
replication = []
default = ["std", "client", "server"]
[dependencies]
lightyear_utils.workspace = true
lightyear_core.workspace = true
lightyear_inputs.workspace = true
lightyear_link.workspace = true
lightyear_messages.workspace = true
lightyear_connection.workspace = true
lightyear_sync.workspace = true
lightyear_prediction = { workspace = true, features = ["deterministic"] }
lightyear_replication = { workspace = true, features = ["deterministic"] }
lightyear_transport.workspace = true
seahash.workspace = true
tracing.workspace = true
bevy_app = { workspace = true, features = ["bevy_reflect"] }
bevy_ecs.workspace = true
bevy_replicon.workspace = true
serde.workspace = true
[dev-dependencies]
test-log.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true