-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
62 lines (58 loc) · 1.5 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_editor_cam"
version = "0.5.0"
edition = "2021"
description = "A camera controller for editors and CAD."
license = "MIT OR Apache-2.0"
keywords = ["controller", "camera", "bevy", "CAD"]
repository = "https://github.com/aevyrie/bevy_editor_cam"
documentation = "https://docs.rs/crate/bevy_editor_cam/latest"
exclude = ["assets/"]
[features]
default = ["extension_anchor_indicator", "extension_independent_skybox"]
extension_anchor_indicator = ["bevy_gizmos"]
extension_independent_skybox = ["bevy_asset", "bevy_core_pipeline"]
[dependencies]
bevy_app = "0.15.0"
bevy_color = "0.15.0"
bevy_derive = "0.15.0"
bevy_ecs = "0.15.0"
bevy_image = "0.15.0"
bevy_input = "0.15.0"
bevy_log = "0.15.0"
bevy_math = "0.15.0"
bevy_picking = "0.15.0"
bevy_reflect = "0.15.0"
bevy_render = "0.15.0"
bevy_time = "0.15.0"
bevy_transform = "0.15.0"
bevy_utils = "0.15.0"
bevy_window = "0.15.0"
# Optional
bevy_asset = { version = "0.15.0", optional = true }
bevy_core_pipeline = { version = "0.15.0", optional = true }
bevy_gizmos = { version = "0.15.0", optional = true }
[dev-dependencies]
bevy_framepace = "0.18"
big_space = "0.8.0"
indoc = "2.0.5"
rand = "0.8"
[dev-dependencies.bevy]
version = "0.15.0"
features = [
"bevy_gizmos",
"bevy_gltf",
"bevy_scene",
"bevy_text",
"bevy_ui",
"bevy_winit",
"default_font",
"multi_threaded",
"jpeg",
"ktx2",
"tonemapping_luts",
"x11",
"zstd",
]
# TODO: workaround for https://github.com/bevyengine/bevy/issues/16562
default-features = true