renet_netcode 1.0.0

netcode transport for the renet crate: Server/Client network library for multiplayer games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "renet_netcode"
version = "1.0.0"
edition = "2021"
keywords = ["gamedev", "networking", "transport"]
description = "netcode transport for the renet crate: Server/Client network library for multiplayer games"
repository = "https://github.com/lucaspoffo/renet"
license = "MIT OR Apache-2.0"

[features]
bevy = ["dep:bevy_ecs"]

[dependencies]
renet = { version = "1.0.0", path = "../renet" }
renetcode = { path = "../renetcode", version = "1.0.0" }
bevy_ecs = { version = "0.15", optional = true }
log = "0.4.22"