-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Cargo.toml
34 lines (29 loc) · 1.21 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_renet"
description = "Bevy plugin for the renet crate: Server/Client network library for multiplayer games with authentication and connection management"
edition = "2021"
keywords = ["gamedev", "networking"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/lucaspoffo/renet"
version = "1.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["netcode"]
netcode = ["dep:renet_netcode"]
steam = ["dep:renet_steam"]
[[example]]
name = "simple"
required-features = ["netcode"]
[dependencies]
bevy_app = "0.15"
bevy_ecs = "0.15"
bevy_time = "0.15"
renet = { path="../renet", version = "1.0.0", features = ["bevy"] }
renet_netcode = { path="../renet_netcode", version = "1.0.0", features = ["bevy"], optional = true }
renet_steam = { path="../renet_steam", version = "1.0.0", features = ["bevy"], optional = true }
[dev-dependencies]
bevy = {version = "0.15.0", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_asset", "bevy_pbr", "x11", "tonemapping_luts", "ktx2", "zstd", "bevy_window"]}
bincode = "1.3"
env_logger = "0.11"
serde = {version = "1.0", features = ["derive"]}