-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (50 loc) · 1.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "robius-location"
version = "0.1.1"
edition = "2021"
authors = [
"Klim Tsoutsman <[email protected]>",
"Kevin Boos <[email protected]>",
"Project Robius Maintainers",
]
description = "Rust abstractions for multi-platform location data"
homepage = "https://robius.rs/"
keywords = ["robius", "location", "coordinate"]
categories = ["os", "hardware-support", "api-bindings"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/project-robius/robius-location"
[build-dependencies]
android-build = "0.1.0"
[dependencies]
cfg-if = "1.0.0"
[target.'cfg(target_os = "android")'.dependencies.jni]
version = "0.21.1"
[target.'cfg(target_os = "android")'.dependencies.robius-android-env]
version = "0.2.0"
[target.'cfg(target_vendor = "apple")'.dependencies.objc2]
version = "0.5.0"
features = ["verify"]
[target.'cfg(target_vendor = "apple")'.dependencies.objc2-core-location]
version = "0.2.2"
features = [
"CLLocation",
"CLLocationManager",
"CLLocationManagerDelegate",
]
[target.'cfg(target_vendor = "apple")'.dependencies.objc2-foundation]
version = "0.2.2"
features = []
[target.'cfg(target_os = "windows")'.dependencies.tokio]
version = "1.38.0"
optional = true
default-features = false
features = ["rt"]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.57.0"
features = [
"Devices_Geolocation",
"deprecated",
]
[features]
async = ["dep:tokio"]