-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (24 loc) · 841 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
[package]
name = "bevy_ios_impact"
version = "0.3.0"
license = "MIT OR Apache-2.0"
description = "allows using ios ImpactFeedback API to generate haptic device vibrations"
authors = ["rusticorn <[email protected]>"]
edition = "2021"
readme = "README.md"
homepage = "https://github.com/rustunit/bevy_ios_impact"
repository = "https://github.com/rustunit/bevy_ios_impact"
documentation = "https://docs.rs/bevy_ios_impact"
keywords = ["gamedev", "bevy", "ios", "mobile"]
categories = ["game-engines"]
[workspace]
members = ["ios_impact"]
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"
[dependencies]
bevy = { version = "0.15", default-features = false }
[target.'cfg(target_os = "ios")'.dependencies.ios_impact]
version = "0.2"
path = "./ios_impact"
[target.'cfg(target_os = "ios")'.dependencies.objc2]
version = "0.5"