-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.21 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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "bevy_replicon_example_backend"
version = "0.40.0"
authors = [
"Hennadii Chernyshchyk <genaloner@gmail.com>",
"koe <ukoe@protonmail.com>",
]
edition = "2024"
description = "A simple transport intended only for examples"
readme = "README.md"
repository = "https://github.com/simgine/bevy_replicon"
keywords = [
"bevy",
"multiplayer",
"netcode",
"replication",
"server-authoritative",
]
categories = ["game-development", "network-programming"]
license = "MIT OR Apache-2.0"
include = ["/src", "../LICENSE*"]
[dependencies]
bevy = { version = "0.18", default-features = false, features = ["bevy_log"] }
bevy_replicon = { path = "..", version = "0.40.0", default-features = false }
fastrand = "2.3"
[dev-dependencies]
bevy = { version = "0.18", default-features = false, features = [
"bevy_gizmos",
"bevy_text",
"bevy_ui_render",
"bevy_window",
"default_font",
"debug",
"serialize",
"ui_picking",
"x11",
] }
clap = { version = "4.1", features = ["derive"] }
fastrand-contrib = "0.1"
pathfinding = "4.14"
serde = "1.0"
test-log = "0.2"
[features]
default = ["client", "server"]
server = ["bevy_replicon/server"]
client = ["bevy_replicon/client"]
[lints.clippy]
type_complexity = "allow"