lightyear_replication 0.26.2

IO primitives for the lightyear networking library
[package]
name = "lightyear_replication"
version = "0.26.2"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "IO primitives for the lightyear networking library"
repository = "https://github.com/cBournhonesque/lightyear"

[features]
default = ["std"]
std = ["lightyear_transport/std"]
client = []
server = ["lightyear_connection/server"]
prediction = []
interpolation = []
deterministic = []
trace = []
metrics = ["dep:metrics", "std", "lightyear_utils/metrics"]
test_utils = []
avian2d = ["dep:avian2d"]
avian3d = ["dep:avian3d"]

[dependencies]
lightyear_link.workspace = true
lightyear_utils.workspace = true
lightyear_serde.workspace = true
lightyear_core.workspace = true
lightyear_connection.workspace = true
lightyear_messages.workspace = true
lightyear_transport.workspace = true
lightyear_sync.workspace = true

# utils
dashmap.workspace = true
indexmap.workspace = true
metrics = { workspace = true, optional = true }
smallvec.workspace = true
thiserror.workspace = true
tracing.workspace = true
seahash.workspace = true

# serde
serde.workspace = true
bytes.workspace = true

# bevy
bevy_app.workspace = true
bevy_derive.workspace = true
bevy_ecs = { workspace = true, features = ["bevy_reflect"] }
bevy_math.workspace = true
bevy_platform.workspace = true
bevy_ptr.workspace = true
bevy_reflect.workspace = true
bevy_time = { workspace = true, features = ["bevy_reflect"] }
bevy_transform = { workspace = true, features = ["libm"] }
bevy_utils.workspace = true

# avian
avian2d = { workspace = true, optional = true }
avian3d = { workspace = true, optional = true }


[dev-dependencies]
test-log.workspace = true

[lints]
workspace = true

[package.metadata.docs.rs]
all-features = true