-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
62 lines (54 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "bevy_dolly"
version = "0.0.5"
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", "bevy/bevy_pbr"]
[dependencies]
dolly = { path = "dolly", default-features = false }
leafwing-input-manager = { version = "0.16", optional = true }
[dependencies.bevy]
version = "0.15"
features = ["bevy_render", "bevy_asset", "bevy_window"]
default-features = false
[dev-dependencies]
leafwing-input-manager = "0.16"
bevy-inspector-egui = "0.28"
[dev-dependencies.bevy]
version = "0.15"
features = [
"bevy_core_pipeline",
"animation",
"bevy_asset",
"bevy_scene",
"bevy_pbr",
"bevy_winit",
"bevy_gltf",
"bevy_sprite",
"bevy_state",
"png",
"ktx2",
"zstd",
"tonemapping_luts",
"bevy_gizmos",
]
default-features = false
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.15"
features = ["x11", "wayland"]
default-features = false