-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 1.13 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
[package]
name = "bevy_sync"
version = "0.15.0"
edition = "2021"
authors = ["Raffaele Ragni <raffaele.ragni@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Plugin for synchronizing entities and components between server and its clients."
homepage = "https://github.com/raffaeleragni/bevy_sync"
repository = "https://github.com/raffaeleragni/bevy_sync"
documentation = "https://github.com/raffaeleragni/bevy_sync/blob/master/README.md"
readme = "README.md"
keywords = ["bevy", "netcode", "synchronization"]
categories = ["game-development", "network-programming"]
include = ["/src", "/LICENSE-MIT", "/LICENSE-APACHE"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.15" }
wgpu-types = { version = "23.0.0", features = ["serde"] }
bevy_renet = "1.0.0"
bincode = "1.3"
serde = { version = "1.0", features = ["derive"] }
uuid = "1.10"
threadpool = "1.8"
tiny_http = { version = "0", default-features = false }
ureq = { version = "2.10", default-features = false }
portpicker = "0.1"
ascii = "1.1"
lz4-compression = "0.7"
[dev-dependencies]
serial_test = "3.1"