forked from CabbitStudios/bevy_spicy_networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 1.03 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
35
36
37
38
39
40
[package]
name = "bevy_spicy_networking"
version = "0.5.2"
authors = ["Neikos <neikos@neikos.email>"]
edition = "2018"
description = "A spicy 🌶🌶🌶 and simple networking plugin for Bevy"
readme = "README.md"
repository = "https://github.com/CabbitStudios/bevy_spicy_networking"
license = "MIT"
categories = ["game-development", "network-programming"]
autoexamples = false
exclude = ["assets"]
resolver = "2"
[badges]
maintenance = { status = "actively-developed" }
[[example]]
name = "client"
[[example]]
name = "server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.6", features = [], default-features = false }
bincode = "1.3.2"
crossbeam-channel = "0.5.0"
dashmap = "4.0.2"
derive_more = "0.99.13"
downcast-rs = "1.2.0"
serde = { version = "1.0.125", features = ["derive"] }
thiserror = "1.0.24"
tokio = { version = "1.4.0", features = ["net", "io-util", "sync", "rt-multi-thread"] }
typetag = "0.1.7"
[dev-dependencies]
bevy = { version = "0.6" }