-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
31 lines (26 loc) · 1.41 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "bevy_replicon_snap"
version = "0.2.6"
edition = "2021"
authors = ["Ben Dzaebel <[email protected]>"]
hompage = "bendz.dev"
license = "MIT"
repository = "https://github.com/Bendzae/bevy_replicon_snap"
categories = ["game-development", "network-programming"]
keywords = ["networking", "bevy", "snapshot", "interpolation", "prediction"]
description = "High-level networking crate that extends the bevy_replicon crate to allow snapshot interpolation and client-side prediction"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.15", default_features = false }
bevy_replicon = "0.29.1"
serde = "1.0"
bevy_replicon_snap_macros = { version = "0.2.0", path = "macros" }
[dev-dependencies]
clap = { version = "4.1", features = ["derive"] }
bevy = { version = "0.15", default-features = true }
bevy_replicon_renet = { git = "https://github.com/matoous/bevy_replicon_renet.git", branch = "md/bevy-0.15" }
[package.metadata.commands]
example_interpolation = "cargo run --example interpolated -- server & cargo run --example interpolated -- client && fg"
example_interpolation_add_client = "cargo run --example interpolated -- client && fg"
example_prediction = "cargo run --example owner_predicted -- server & cargo run --example owner_predicted -- client && fg"
example_prediction_add_client = "cargo run --example owner_predicted -- client && fg"