-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
47 lines (41 loc) · 1.19 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
[package]
name = "iyes_perf_ui"
version = "0.4.0-rc.1"
authors = ["Ida 'Iyes'"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/IyesGames/iyes_perf_ui"
homepage = "https://github.com/IyesGames/iyes_perf_ui"
keywords = ["gamedev", "bevy"]
categories = ["game-engines"]
description = "Customizable Performance/Debug Overlay for Bevy UI"
exclude = ["assets/*", "screenshots/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "entries", "widgets", "sysinfo", "chrono" ]
# Enable the collection of built-in Perf UI Entries
entries = []
# Enable the collection of additional built-in Perf UI Widgets
widgets = []
sysinfo = ["bevy/sysinfo_plugin", "bevy/multi_threaded"]
# Enable optional `chrono` dependency for timezone support in the Clock entry
chrono = ["dep:chrono"]
[dependencies]
num-traits = "0.2.19"
[dependencies.bevy]
version = "0.15.0-rc.3"
default-features = false
features = [
"bevy_ui",
]
[dependencies.chrono]
version = "0.4.38"
optional = true
default-features = false
features = [
"clock",
]
[dev-dependencies.bevy]
version = "0.15.0-rc.3"
default-features = true