-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (36 loc) · 1.04 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
[workspace]
members = [
# "ios-example/"
]
[package]
name = "coremotion-rs"
version = "0.0.2"
authors = ["Joshua Pedrick <[email protected]>"]
edition = "2021"
keywords = ["ios", "coremotion", "accelerometer", "gyroscope", "magnetometer"]
repository = "https://github.com/jpedrick/coremotion-rs"
documentation = "https://jpedrick.github.io/coremotion"
categories = ["coremotion", "ios"]
license = "MIT"
description = "CoreMotion bindings for iOS"
[package.metadata.bundle]
name = "coremotion"
identifier = "com.github.jpedrick.coremotion"
category = "Utility"
short_description = "CoreMotion bindings for Rust"
long_description = """
"""
[dependencies]
clang-sys = "1.7.0"
objc = "0.2.7"
block = "0.1.6"
[build-dependencies]
bindgen = { version = "0.69.1", default-features = true}
[dev-dependencies]
oslog = "0.2.0"
log = "0.4.20"
#[build]
#rustflags = ["-C", "link-arg=-Wl,-rpath,/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/"]
[target.'cfg(target_os = "ios")'.dependencies]
objc = "0.2.7"
block = "0.1.6"