-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
125 lines (115 loc) · 3.14 KB
/
Cargo.toml
File metadata and controls
125 lines (115 loc) · 3.14 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[package]
name = "bevyrpg"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.100"
bevy = { version = "0.18.0", default-features = false, features = [
"std",
"async_executor",
"android-game-activity",
"android_shared_stdcxx",
"gltf_animation",
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_dev_tools",
"bevy_post_process",
"bevy_anti_alias",
"bevy_gilrs",
"bevy_gizmos",
"bevy_gltf",
"bevy_input_focus",
"bevy_log",
"mesh_picking",
"bevy_pbr",
"bevy_picking",
"bevy_render",
"bevy_scene",
"bevy_image",
"experimental_bevy_feathers",
"bevy_mesh",
"bevy_camera",
"bevy_light",
"bevy_shader",
"bevy_sprite",
"sprite_picking",
"bevy_sprite_render",
"bevy_state",
"bevy_text",
"bevy_ui",
"ui_picking",
"bevy_ui_render",
"bevy_window",
"bevy_winit",
"custom_cursor",
"default_font",
"hdr",
"ktx2",
"multi_threaded",
"png",
"reflect_auto_register",
"smaa_luts",
"sysinfo_plugin",
"tonemapping_luts",
"webgl2",
"x11",
"wayland",
"debug",
"zstd_rust",
"jpeg"
] }
clap = { version = "*", features = ["derive"] }
lazy_static = "*"
rand = "*"
serde = "*"
standard-dist = "*"
nom = "*"
polyanya = "0.16.1"
itertools = "0.14.0"
tracing = "0.1.44"
ratatui = { version = "0.30.0", default-features = false }
#
# BEVY ADDONS
#
# bevy 0.17 ready
# Pull ready
bevy_sun_move = { git = "https://github.com/Zrocket/bevy_sun_move", branch = "main" }
soft_ratatui = { git = "https://github.com/Zrocket/soft_ratatui.git", branch ="togit", features = ["embedded-graphics", "unicodefonts"] }
# bevy 0.18 ready
bevy_console = { git = "https://github.com/Zrocket/bevy-console.git" }
avian3d = { version = "0.6.1", features = ["collider-from-mesh"] }
avian_rerecast = "0.5.0-rc.3"
bevy_rerecast = "0.4.0"
bevy_seedling = "0.7.0"
bevy_yarnspinner = "0.7.0"
bevy_hanabi = "0.18.0"
landmass = "0.9.1"
landmass_rerecast = "0.2.0"
bevy_landmass = "0.11.0"
avian_pickup = "0.5.0-rc.1"
bevy_yarnspinner_example_dialogue_view = "0.7.0"
bevy-tnua-physics-integration-layer = "0.12.0"
bevy-inspector-egui = "0.36.0"
bevy_asset_loader = {version = "0.25.0", features = ["2d", "standard_dynamic_assets"]}
bevy_enhanced_input = "0.23.1"
bevy_flycam = "0.18.0"
bevy-yoleck = "0.31.0"
bevy_egui = "0.39.0"
bevy_sprite3d = "8.0.0"
bevy-tnua-avian3d = "0.11.0"
bevy-tnua = "0.30.0"
bevy_skein = "0.5.0"
bevy_simple_text_input = "0.13.0"
bevy_bae = "0.1.0"
#bevy_hotpatching_experiments = "0.4.0"
#bevy_mod_scripting = { version = "0.19.0", features = ["rhai"] }
bevy_ingame_clock = { git = "https://github.com/GuillaumeDelorme/bevy_ingame_clock.git", branch = "bevy-0.18-update" }
chill_bevy_console = "0.1.1"
bevy_old_tv_shader = { git = "https://github.com/Zrocket/bevy_old_tv_shader.git", version = "0.5.0", features=["ui"] }
[profile.dev]
opt-level=3
#[target.'cfg(all(target_family = "wasm", any(target_os = "unknown", target_os = "none")))'.dependencies]
#getrandom01 = { package = "getrandom", version = "^0.2", features = ["js"] }
#getrandom02 = { package = "getrandom", version = "^0.3", features = ["wasm_js"] }