-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (34 loc) · 1.03 KB
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_replicon_visible_sets"
version = "0.0.1-rc.2"
repository = "https://github.com/malfuu/bevy_replicon_visible_sets"
documentation = "https://docs.rs/bevy_replicon_visible_sets/latest/bevy_replicon_visible_sets/"
authors = [
"malfuu <256192511+malfuu@users.noreply.github.com>"
]
description = "Alternative visibility rules for bevy_replicon"
readme = "README.md"
edition = "2024"
license = "MIT OR Apache-2.0"
keywords = [
"bevy",
"multiplayer",
"replication",
"server-authoritative",
"visibility",
]
categories = ["game-development"]
[dependencies]
bevy = { version = "0.19", default-features = false, features = ["serialize"] }
bevy_replicon = { version = "0.41", default-features = false, features = ["server"] }
[dev-dependencies]
serde = { version = "1.0", default-features = false }
bevy_replicon = { version = "0.41", default-features = false, features = ["server", "client"] }
[[test]]
name = "container"
[[test]]
name = "observer"
[[test]]
name = "client_visible"
[[test]]
name = "always_visible"