forked from bonsairobo/smooth-bevy-cameras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 943 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
[package]
name = "smooth-bevy-cameras"
description = "Bevy camera controllers with buttery, exponential smoothing."
version = "0.4.0"
repository = "https://github.com/bonsairobo/smooth-bevy-cameras"
authors = ["Duncan <[email protected]>"]
keywords = ["bevy", "camera"]
edition = "2021"
license = "MIT"
[dependencies]
approx = "0.4"
serde = "1.0"
[dependencies.bevy]
version = "0.7"
# git = "https://github.com/bevyengine/bevy"
# rev = "f3de12bc"
# branch = "main"
default-features = false
[dev-dependencies.bevy]
version = "0.7"
# git = "https://github.com/bevyengine/bevy"
# rev = "f3de12bc"
# branch = "main"
features = ["bevy_core_pipeline", "bevy_pbr", "bevy_winit", "bevy_gltf", "bevy_render"]
default-features = false
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.7"
# git = "https://github.com/bevyengine/bevy"
# rev = "f3de12bc"
# branch = "main"
features = ["x11", "wayland"]
default-features = false