forked from BlackPhlox/bevy_dolly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (41 loc) · 1.28 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_dolly"
version = "0.0.2"
authors = ["Black Phlox <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/BlackPhlox/bevy_dolly"
documentation = "https://docs.rs/bevy_dolly"
description = "The dolly abstraction layer for the bevy game framework"
keywords = ["gamedev", "bevy", "camera", "fps", "3d" ]
categories = ["game-development", "game-engines", ]
exclude = [
"assets/*",
".github/*",
]
[profile.dev]
opt-level = 3
[lib]
name = "bevy_dolly"
[features]
default = ["drivers", "helpers"]
drivers = []
helpers = ["dep:leafwing-input-manager"]
[dependencies]
dolly = { path = "dolly", default-features = false }
leafwing-input-manager = { version = "0.11.1", optional = true }
[dependencies.bevy]
version = "0.12.0"
features = ["bevy_render", "bevy_asset", "bevy_pbr"]
default-features = false
[dev-dependencies]
leafwing-input-manager = "0.11.1"
[dev-dependencies.bevy]
version = "0.12.0"
features = ["bevy_core_pipeline", "bevy_asset", "bevy_scene", "bevy_pbr", "bevy_winit", "bevy_gltf", "bevy_sprite", "png", "ktx2", "zstd", "tonemapping_luts"]
default-features = false
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.12.0"
features = ["x11", "wayland"]
default-features = false