-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (74 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
81 lines (74 loc) · 1.72 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
[package]
name = "SokoTerm"
version = "1.0.0-beta.2-dev"
edition = "2024"
[dependencies]
rodio = "0.20.1"
rand = "0.9.2"
rand_chacha = "0.9.0"
bevy_ecs = { version = "0.18.1" }
console-lib = { version = "0.3.0", features = ["custom_panic_hook"], optional = true }
bevy_app = { version = "0.18.1", optional = true }
bevy_time = { version = "0.18.1", optional = true }
bevy = { version = "0.18.1", default-features = false, features = [
"std",
"async_executor",
"gltf_animation",
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"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",
"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",
"experimental_bevy_ui_widgets",
"bevy_window",
"bevy_winit",
"custom_cursor",
"default_font",
"hdr",
"ktx2",
"multi_threaded",
"png",
"reflect_auto_register",
"smaa_luts",
"sysinfo_plugin",
"tonemapping_luts",
"webgl2",
"x11",
"debug",
"zstd_rust",
], optional = true}
bevy-steamworks = { version = "0.16.0", optional = true }
smol_str = { version = "0.2.2", optional = true }
[build-dependencies]
embed-resource = "3.0.6"
[features]
cli = ["dep:console-lib", "dep:bevy_app", "dep:bevy_time"]
gui = ["dep:bevy", "dep:smol_str"]
steam = ["gui", "dep:bevy-steamworks"]
[profile.dev.package."*"]
opt-level = 3
# TODO: [profile.release]
# TODO: lto = true