-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 974 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 974 Bytes
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
[package]
name = "daily_set"
version = "0.2.0-dev"
edition = "2024"
license-file = "LICENSE.md"
[features]
debug = ["bevy/debug"]
[dependencies]
bevy = { version = "0.19.0", default-features = false, features = [
# ui without default_platform
"default_app",
"ui_api",
"ui_bevy_render",
"scene",
"picking",
"bevy_ui_widgets",
# default_platform without bevy_gilrs, multi_threaded
"std",
"bevy_winit",
"bevy_clipboard",
"default_font",
"webgl2",
"x11",
"wayland",
"custom_cursor",
"sysinfo_plugin",
# clipboard for ability to copy results
"system_clipboard",
# for persisting to local storage
"bevy_settings",
] }
bytemuck = "1.25.0"
chrono = { version = "0.4.45", default-features = false, features = ["std", "clock", "wasmbind"] }
chrono-tz = { version = "0.10.4", default-features = false, features = ["std"] }
rand = { version = "0.10.2", default-features = false }
rand_pcg = { version = "0.10.2", default-features = false }