lightyear_replication 0.22.2

IO primitives for the lightyear networking library
[package]
name = "lightyear_replication"
version = "0.22.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 = ["lightyear_core/prediction"]
interpolation = ["lightyear_core/interpolation"]
deterministic = ["dep:seahash"]
trace = []
metrics = ["dep:metrics", "std"]
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

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

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

# bevy
bevy_app.workspace = true
bevy_ecs.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"] }

# 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