-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
38 lines (33 loc) · 1.15 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
[package]
authors = ["Johan Helsing <[email protected]>"]
categories = ["game-development"]
description = "A camera that allows panning by dragging with the mouse"
edition = "2021"
keywords = ["gamedev", "bevy"]
license = "MIT OR Apache-2.0"
name = "bevy_pancam"
repository = "https://github.com/johanhelsing/bevy_pancam"
version = "0.16.0"
[features]
bevy_egui = ["dep:bevy_egui"]
[dependencies]
bevy = { version = "0.15", features = ["bevy_window", "bevy_core_pipeline"], default-features = false }
bevy_egui = { version = "0.31", optional = true, default-features = false }
[dev-dependencies]
bevy = {version = "0.15", default-features = false, features = [
"bevy_render",
"bevy_asset",
"bevy_sprite",
"bevy_winit",
"bevy_core_pipeline",
"x11", # github actions runners don't have libxkbcommon installed, so can't use wayland
]}
bevy-inspector-egui = { version = "0.28", default-features = false, features = ["bevy_render"] }
bevy_egui = { version = "0.31", default-features = false, features = ["default_fonts"] }
rand = "0.8"
[[example]]
name = "egui"
required-features = ["bevy_egui"]
[[example]]
name = "inspector"
required-features = ["bevy_egui"]