generated from janhohenheim/foxtrot
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
105 lines (95 loc) · 2.78 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[package]
authors = ["Jan Hohenheim <[email protected]>"]
edition = "2021"
name = "foxtrot"
version = "0.2.0"
license = "MIT OR Apache-2.0"
exclude = [
"dist",
"build",
"assets",
"credits",
"saves",
"resources",
"build.rs",
]
description = "The all-in-one Bevy 3D game template."
repository = "https://github.com/janhohenheim/foxtrot"
keywords = ["gamedev", "bevy", "template", "game"]
categories = ["game-development"]
homepage = "https://janhohenheim.github.io/foxtrot/"
[features]
default = ["dev"]
dev = ["dep:bevy_editor_pls", "dep:bevy_prototype_debug_lines"]
tracing = ["bevy/trace_chrome"]
[dependencies]
bevy_kira_audio = "0.15"
bevy_asset_loader = { version = "0.16", features = ["progress_tracking"] }
bevy_common_assets = { version = "0.6", features = ["ron", "toml"] }
bevy_egui = "0.20"
serde = { version = "1", features = ["derive"] }
indexmap = { version = "1", features = ["serde-1"] }
strum = "0.24"
strum_macros = "0.24"
ron = "0.8"
regex = "1"
chrono = "0.4"
glob = "0.3"
oxidized_navigation = "0.4"
bitflags = "2"
iyes_progress = "0.8"
unicode-segmentation = "1"
anyhow = "1"
leafwing-input-manager = { version = "0.9", features = ["egui"] }
warbler_grass = "0.3"
rand = { version = "0.8", features = ["small_rng", "nightly"] }
bevy_dolly = { git = "https://github.com/BlackPhlox/bevy_dolly", rev = "b2f5dc787664cb8c3d92f792cbd437886fc090c6" }
spew = "0.2.1"
bevy_mod_sysfail = "2"
seldom_fn_plugin = "0.3"
bevy_rapier3d = { version = "0.21", features = [ "serde-serialize", "simd-nightly",] }
bevy_editor_pls = { version = "0.4", optional = true }
bevy_prototype_debug_lines = { version = "0.10", optional = true, features = [ "3d" ] }
# keep the following in sync with Bevy's dependencies
winit = { version = "0.28", default-features = false }
image = { version = "0.24", default-features = false }
[dependencies.bevy]
version = "0.10.1"
default-features = false
features = [
"animation",
"bevy_asset",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"png",
"jpeg",
"hdr",
"zstd",
"x11",
"ktx2",
"tonemapping_luts",
"serialize",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.bevy]
version = "0.10.1"
default-features = false
features = [ "filesystem_watcher" ]
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.bevy]
version = "0.10.1"
default-features = false
features = [ "bevy_dylib" ]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bevy_hanabi = "0.6"
bevy_rapier3d = { version = "0.21", features = ["parallel"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
bevy_rapier3d = { version = "0.21", features = ["wasm-bindgen"] }
[build-dependencies]
embed-resource = "2.1"