bevnet/Cargo.toml

22 lines
517 B
TOML
Raw Normal View History

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