forked from tauri-apps/cargo-mobile2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
117 lines (104 loc) · 2.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "tauri-mobile"
version = "0.2.0"
authors = [
"Tauri Programme within The Commons Conservancy",
"Brainium Studios LLC",
"Francesca Lovebloom <[email protected]>"
]
edition = "2018"
description = "Rust on mobile made easy!"
documentation = "https://docs.rs/tauri-mobile"
repository = "https://github.com/tauri-apps/tauri-mobile"
readme = "README.md"
keywords = [ "cargo", "mobile", "ios", "android", "tauri" ]
categories = [ "development-tools::cargo-plugins" ]
license = "Apache-2.0 OR MIT"
[[bin]]
name = "cargo-apple"
required-features = [ "cli" ]
[[bin]]
name = "cargo-android"
required-features = [ "cli" ]
[features]
cli = [
"hit",
"home",
"dunce",
"handlebars",
"log",
"serde",
"serde_json",
"thiserror",
"structopt",
"env_logger"
]
brainium = [ ]
openssl-vendored = [ "openssl/vendored" ]
default = [ "cli" ]
[dependencies]
handlebars = "3.3.0"
serde_json = "1.0.57"
colored = "1.9.3"
deunicode = "1.1.1"
dunce = "1.0.2"
english-numbers = "0.3.3"
env_logger = { version = "0.7.1", optional = true }
heck = "0.4.0"
home = "0.5.3"
ignore = "0.4.16"
indexmap = "1.3.2"
java-properties = { version = "1.2.0" }
log = "0.4.8"
once-cell-regex = "0.2.1"
path_abs = "0.5.0"
serde = { version = "1.0.105", features = [ "derive" ] }
structopt = { version = "0.3.12", optional = true }
textwrap = { version = "0.11.0", features = [ "term_size" ] }
thiserror = "1.0.20"
toml = { version = "0.5.6", features = [ "preserve_order" ] }
os_pipe = "1"
[dev-dependencies]
rstest = "0.12"
simple_logger = "1.11.0"
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.20.0"
core-foundation = "0.7.0"
openssl = "0.10.28"
objc = "0.2.7"
objc_id = "0.1.1"
[target."cfg(not(target_os = \"macos\"))".dependencies]
ureq = "2.4.0"
[target."cfg(target_os = \"linux\")".dependencies]
freedesktop_entry_parser = "1.1"
lexical-core = "0.7.6"
[target."cfg(unix)".dependencies]
libc = "0.2.81"
[target."cfg(windows)".dependencies]
winapi = { version = "0.3.9", features = [ "winbase" ] }
[target."cfg(windows)".dependencies.windows]
version = "0.39.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_Debug",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_Memory",
"Win32_System_Registry",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_UI_Shell"
]
[target."cfg(windows)".build-dependencies]
embed-resource = "1.6.4"
[build-dependencies]
hit = { version = "0.2.0", optional = true }
home = { version = "0.5.3", optional = true }
dunce = { version = "1.0.2", optional = true }
handlebars = { version = "3.3.0", optional = true }
log = { version = "0.4.11", optional = true }
serde = { version = "1.0.114", optional = true }
serde_json = { version = "1.0.57", optional = true }
thiserror = { version = "1.0.20", optional = true }