-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.14 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
[package]
name = "bevy_awesome_debug_camera"
description = "A easy-to-use customizable drop-in free cam for the (awesome) bevy engine"
version = "0.1.0"
edition = "2021"
readme = "README.md"
authors = ["Paul Bühne"]
repository = "https://github.com/cactusdualcore/bevy_freecam"
homepage = "https://github.com/cactusdualcore/bevy_freecam/blob/main/README.md"
license = "Unlicense"
keywords = ["gamedev", "bevy", "3d", "camera", "freecam"]
exclude = [".github"]
[dependencies]
bevy_app = { version = "0.14.0", default-features = false }
bevy_ecs = { version = "0.14.0", default-features = false }
bevy_input = { version = "0.14.0", default-features = false }
bevy_math = { version = "0.14.0", default-features = false }
bevy_reflect = { version = "0.14.0", default-features = false, optional = true }
bevy_render = { version = "0.14", default-features = false }
bevy_time = { version = "0.14.0", default-features = false }
bevy_transform = { version = "0.14.0", default-features = false }
bevy_window = { version = "0.14.0", default-features = false }
[dev-dependencies]
bevy = "0.14.0"
[features]
default = ["bevy_reflect"]
bevy_reflect = ["dep:bevy_reflect"]