-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
64 lines (55 loc) · 1.5 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
[package]
name = "crossbundle-tools"
version = "0.2.3"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Build and publish apps for Android/iOS"
repository = "https://github.com/dodorare/crossbow"
license = "MIT OR Apache-2.0"
keywords = ["android", "ios"]
readme = "README.md"
[dependencies]
crossbow-android = { version = "0.2.3", path = "../../platform/android", default-features = false, features = ["embed"] }
# Apple crates
apple-bundle = { version = "0.1.4", optional = true }
simctl = { version = "0.1.1", package = "creator-simctl", optional = true }
# Android crates
android-manifest = { version = "0.1.10", optional = true }
android-tools = { version = "0.2.11", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_plain = "1.0"
dunce = "1.0"
fs_extra = "1.2"
dirs = "4.0"
which = "4.2"
tempfile = "3.3"
zip = "0.5"
zip-extensions = "0.6.1"
image = { version = "0.24.3", default-features = false, features = ["png", "jpeg"] }
itertools = "0.10"
cargo = "0.63.1"
cargo-util = "0.2.0"
thiserror = "1.0"
anyhow = "1.0"
displaydoc = "0.2"
log = "0.4"
termcolor = "1.1"
atty = "0.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
fwdansi = "1.1"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"basetsd",
"handleapi",
"processenv",
"winbase",
"wincon",
"winnt",
]
[features]
default = ["android", "apple"]
android = ["android-manifest", "android-tools"]
apple = ["apple-bundle", "simctl"]