-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (44 loc) · 1.13 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
[package]
name = "fleshborn"
version = "0.0.1"
edition = "2021"
authors = ["Brenna Conovali <contact@br3nnabee.info>"]
license = "AGPL-3.0-only"
description = "Isometric zombie survival game"
repository = "https://github.com/br3nnabee/fleshborn"
keywords = ["game", "bevy", "rust"]
categories = ["game-engine", "2d", "3d"]
[features]
default = []
gui = []
client = ["gui"]
server = []
[profile.dev]
opt-level = 1
debug = true
overflow-checks = true
lto = false
codegen-units = 8
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = false
overflow-checks = false
panic = "abort"
[dependencies]
bevy = { version = "0.15", features = ["dynamic_linking"] }
lightyear = { version = "0.18", features = ["leafwing", "webtransport"] }
bevy-inspector-egui = "0.28"
leafwing-input-manager = "0.16"
rustc-hash = "2.1.0"
iyes_perf_ui = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
async-compat = "0.2"
cfg-if = "1.0"
crossbeam-channel = "0.5"
rand_core = "0.6"
bevy_rand = { version = "0.9", features = ["thread_local_entropy", "wyrand"] }