bevnet/Cargo.toml

22 lines
517 B
TOML

[package]
name = "bevnet"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A library for networking in Bevy."
authors = ["Tipragot <contact@tipragot.fr>"]
keywords = ["bevy", "network", "game"]
categories = ["network-programming", "game-development"]
repository = "https://git.tipragot.fr/tipragot/bevnet"
[dependencies]
serde = { version = "1.0.160", features = ["derive"] }
bincode = "1.3.3"
bevy = "0.10.1"
[features]
default = ["server", "sync"]
server = []
client = []
sync = []