-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 893 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 893 Bytes
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
[package]
name = "crystalorb-bevy-networking-turbulence"
version = "0.3.0"
authors = ["Ernest Wong <sudo@ernestwong.nz>"]
categories = ["games", "simulation"]
description = "bevy_networking_turbulence integration for CrystalOrb"
edition = "2018"
keywords = ["netcode"]
license = "Apache-2.0"
readme = "README.markdown"
repository = "https://github.com/ErnWong/crystalorb"
[features]
default = ["use-udp"]
use-udp = ["bevy_networking_turbulence/use-udp"]
use-webrtc = ["bevy_networking_turbulence/use-webrtc"]
[dependencies]
bevy_app = "0.5"
bevy_ecs = "0.5"
bevy_core = "0.5"
bevy_networking_turbulence = {version = "0.3.0", default-features = false}
crystalorb = {version = "0.3.0", path="../../"}
serde = {version = "1.0.118", features = ["derive"]}
turbulence = "0.3"
[dev-dependencies]
bevy = {version = "0.5", default-features = false}
crystalorb-demo = {path = "../../examples/demo"}