-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (49 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "bevy_replicon_quinnet"
version = "0.8.0"
description = "Integration with bevy_quinnet for bevy_replicon"
repository = "https://github.com/Henauxg/bevy_quinnet"
documentation = "https://docs.rs/bevy_replicon_quinnet"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["gamedev", "networking", "quic", "bevy", "plugin"]
categories = ["game-development", "network-programming"]
readme = "README.md"
exclude = ["assets/"]
[dependencies]
bevy_replicon = { version = "0.29", default-features = false }
bevy_quinnet = { version = "0.14.0", default-features = false }
bevy = { version = "0.15", default-features = false }
[features]
default = ["client", "server", "shared-client-id"]
# Enables client features
client = ["bevy_replicon/client", "bevy_quinnet/client"]
# Enables server features
server = ["bevy_replicon/server", "bevy_quinnet/server"]
# Re-exports bevy_quinnet features
shared-client-id = ["bevy_quinnet/shared-client-id"]
[dev-dependencies]
serde = "1.0"
clap = { version = "4.1", features = ["derive"] }
bevy = { version = "0.15", default-features = false, features = [
"bevy_text",
"bevy_window",
"bevy_ui",
"bevy_state",
"bevy_gizmos",
"x11",
"default_font",
# Can be removed later, temporary fixes for a bug in "0.14.0-rc.2"
"bevy_scene",
"bevy_pbr",
"ktx2",
"zstd",
] }
[[example]]
name = "simple_box"
path = "examples/simple_box.rs"
[[example]]
name = "tic_tac_toe"
path = "examples/tic_tac_toe.rs"
[[test]]
name = "transport"