-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
40 lines (32 loc) · 913 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
37
38
39
40
[package]
name = "bevy_blur_regions"
version = "0.5.0"
authors = ["Andrew Bentley <[email protected]>"]
edition = "2021"
description = "A Bevy plugin to selectively blur regions of the screen"
repository = "https://github.com/atbentley/bevy_blur_regions"
license = "MIT OR Apache-2.0"
[dependencies]
bevy = { version = "0.14", default-features = false, features = ["bevy_render"] }
bevy_egui = { version = "0.30", optional = true }
[features]
all = ["bevy_ui", "egui"]
default = ["bevy_ui"]
# Enable Bevy UI integration
bevy_ui = ["bevy/bevy_ui"]
# Enable egui integration
egui = ["dep:bevy_egui"]
[dev-dependencies]
bevy = { version = "0.14" }
[[example]]
name = "2d_egui"
path = "examples/2d_egui.rs"
required-features = ["egui"]
[[example]]
name = "egui"
path = "examples/egui.rs"
required-features = ["egui"]
[[example]]
name = "settings"
path = "examples/settings.rs"
required-features = ["egui"]