-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.18 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
[package]
name = "robius-url-handler"
version = "0.1.0"
edition = "2021"
authors = [
"Klim Tsoutsman <[email protected]>",
"Kevin Boos <[email protected]>",
"Project Robius Maintainers",
]
description = "Rust abstractions for registering application URL handlers"
documentation = "https://docs.rs/robius-url-handler"
homepage = "https://robius.rs/"
keywords = ["uri", "deep-link", "intent"]
categories = ["os", "api-bindings"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/project-robius/robius-url-handler"
[dependencies]
cfg-if = "1.0.0"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.5.2"
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.2.2"
features = [
# We currently roll our own version of the following structs because they don't have all the required functionality.
# See the comment in sys::macos::objc2 for more details.
# "NSAppleEventManager",
# "NSAppleEventDescriptor",
"NSString",
"NSURL",
]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.57.0"
features = [
"ApplicationModel_Activation",
"ApplicationModel_Core",
]