-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 903 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 903 Bytes
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
[package]
name = "bevy_ios_impact"
version = "0.6.0"
license = "MIT OR Apache-2.0"
description = "allows using ios ImpactFeedback API to generate haptic device vibrations"
authors = ["rusticorn <mail@rusticorn.com>"]
edition = "2024"
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_app = { version = "0.18", default-features = false }
bevy_ecs = { version = "0.18", 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"