-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
52 lines (44 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "bevy_ggrs"
version = "0.17.0"
authors = ["Georg Schuppe <georg.schuppe@gmail.com>"]
edition = "2021"
description = "Bevy plugin for the GGRS P2P rollback networking library"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "/~https://github.com/gschup/bevy_ggrs"
keywords = ["gamedev", "networking", "ggpo", "rollback", "bevy"]
categories = ["network-programming", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
wasm-bindgen = ["instant/wasm-bindgen", "ggrs/wasm-bindgen"]
[dependencies]
bevy = { version = "0.15", default-features = false }
instant = { version = "0.1", optional = true }
log = "0.4"
#ggrs = { version= "0.11.0", features=["sync-send"]}
ggrs = { git = "/~https://github.com/gschup/ggrs", features = ["sync-send"] }
seahash = "4.1"
disqualified = "1.0.0"
serde = { version = "1", default-features = false }
[dev-dependencies]
bevy = { version = "0.15", default-features = true }
clap = { version = "4.4", features = ["derive"] }
rand = "0.8.4"
rand_xoshiro = "0.6"
serde = "1.0.196"
serde_json = "1.0"
serial_test = "2.0"
# Examples
[[example]]
name = "box_game_p2p"
path = "examples/box_game/box_game_p2p.rs"
[[example]]
name = "box_game_spectator"
path = "examples/box_game/box_game_spectator.rs"
[[example]]
name = "box_game_synctest"
path = "examples/box_game/box_game_synctest.rs"
[[example]]
name = "particles"
path = "examples/stress_tests/particles.rs"