-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
37 lines (32 loc) · 1013 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
[package]
name = "bevy_config_cam"
version = "0.3.0"
authors = ["Black Phlox <bphlox@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/BlackPhlox/bevy_config_cam"
documentation = "https://docs.rs/bevy_config_cam"
description = "An easy plug-n-play multifunctional camera that allows for easy setup of a camera and player for a scene."
keywords = ["gamedev", "bevy", "camera", "fps", "3d", ]
categories = ["game-development", "game-engines", ]
exclude = [
"assets/*",
".github/*",
]
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "bevy_config_cam"
[dependencies]
rand = "0.8.0"
strum = "0.24.0"
strum_macros = "0.24.0"
[dependencies.bevy]
version = "0.7"
features = ["bevy_render","bevy_pbr"]
default-features = false
[dev-dependencies.bevy]
version = "0.7"
features = ["bevy_core_pipeline", "bevy_pbr", "bevy_gltf", "x11", "wayland"]
default-features = false