-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 1002 Bytes
/
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
[workspace]
package.version = "0.7.0"
package.license = "MIT OR Apache-2.0"
package.repository = "https://github.com/NiseVoid/bevy_bundlication"
members = [".", "macros"]
[package]
name = "bevy_bundlication"
description = "Replication rules for bevy_replicon based on a bundle pattern"
readme = "README.md"
keywords = [
"bevy",
"networking",
"server-authoritative",
"replication",
]
categories = ["game-development", "network-programming"]
exclude = ["tests/*"]
version.workspace = true
license.workspace = true
repository.workspace = true
edition = "2021"
[dependencies]
bevy_bundlication_macros = {version = "0.7.0", path = "macros"}
bevy = { version = "0.14.1", default-features=false }
bevy_replicon = { version = "0.28", default-features=false }
bincode = "1.3"
serde = "1.0"
[dev-dependencies]
bevy_replicon = { version = "0.28", default-features=false, features = ["server", "client"] }
[profile.release]
codegen-units = 1
opt-level = 3
lto = "fat"
strip = true
panic = "abort"