-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
36 lines (30 loc) · 853 Bytes
/
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
[package]
name = "bevy_screen_diagnostics"
description = "Bevy plugin for displaying diagnostics on screen."
documentation = "https://docs.rs/bevy_screen_diagnostics"
version = "0.6.0"
license = "MIT OR Apache-2.0"
edition = "2021"
keywords = ["gamedev", "bevy", "diagnostics", "debug"]
repository = "https://github.com/laundmo/bevy_screen_diagnostics"
readme = "README.md"
authors = ["laundmo"]
[features]
default = ["builtin-font"]
builtin-font = ["bevy/default_font"]
[dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_text",
"bevy_ui",
"bevy_asset",
"bevy_render",
] }
[dev-dependencies]
bevy = { version = "0.14", default-features = true }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]