forked from d-bucur/bevy_touch_camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1014 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "bevy_touch_camera"
version = "0.1.2"
edition = "2021"
authors = ["Dorian Bucur <[email protected]>"]
description = "Touch camera for Bevy that supports drag and pinch to zoom"
repository = "https://github.com/d-bucur/bevy_touch_camera"
homepage = "https://github.com/d-bucur/bevy_touch_camera"
keywords = ["bevy", "touch", "camera"]
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["game-development"]
exclude = ["assets/*"]
[dependencies]
bevy = { version = "0.14.2", default-features = false }
[dev-dependencies.bevy]
version = "0.14.2"
default-features = false
features = [
"bevy_core_pipeline",
]
[features]
default = ["bevy/bevy_core_pipeline"]
example = ["bevy/bevy_winit", "bevy/x11", "bevy/bevy_sprite", "bevy/bevy_ui", "bevy/png"]
[[example]]
name = "simple"
required-features = ["example"]
[[example]]
name = "presentation"
required-features = ["example"]