forked from aevyrie/bevy_framepace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 1.05 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
48
49
[package]
name = "bevy_framepace"
version = "0.15.0"
edition = "2021"
resolver = "2"
description = "Frame pacing and frame limiting for Bevy"
license = "MIT OR Apache-2.0"
repository = "https://github.com/aevyrie/bevy_framepace"
documentation = "https://docs.rs/bevy_framepace"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy_app = "0.13"
bevy_ecs = "0.13"
bevy_diagnostic = "0.13"
bevy_log = "0.13"
bevy_render = "0.13"
bevy_reflect = "0.13"
bevy_time = "0.13"
bevy_utils = "0.13"
bevy_window = "0.13"
bevy_winit = "0.13"
# Non-bevy
spin_sleep = "1.0"
[features]
default = ["framepace_debug", "bevy_winit/x11"]
framepace_debug = []
[dev-dependencies]
bevy = { version = "0.13", default-features = false, features = [
"bevy_gizmos",
"bevy_text",
"bevy_ui",
"default_font",
"multi-threaded",
"x11",
] }
[[example]]
name = "demo"
path = "examples/demo.rs"
required-features = ["default"]
[[example]]
name = "minimal"
path = "examples/minimal.rs"
required-features = ["default"]