-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
45 lines (38 loc) · 1.32 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
[package]
name = "crossbow"
version = "0.2.3"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Cross-Platform build tools and toolkit for games"
repository = "https://github.com/dodorare/crossbow"
license = "MIT OR Apache-2.0"
keywords = ["build", "android", "ios", "tools"]
readme = "README.md"
exclude = ["assets/", "docs/"]
[dependencies]
thiserror = "1.0"
displaydoc = "0.2"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
android-manifest = { version = "0.1.10", optional = true }
apple-bundle = { version = "0.1.4", optional = true }
[target.'cfg(target_os = "android")'.dependencies]
ndk-glue = "0.7.0"
crossbow-android = { path = "platform/android", version = "0.2.3", optional = true }
[target.'cfg(target_os = "ios")'.dependencies]
crossbow-ios = { path = "platform/ios", version = "0.2.3", optional = true }
[patch.crates-io]
bevy = { git = "https://github.com/dodorare/bevy", rev = "732fc8c585ebd3a622153771a8c51ace93024a04" }
miniquad = { git = "https://github.com/not-fl3/miniquad", rev = "d67ffe6950cf73df307e2d23aaa4726f14399985" }
[features]
default = ["android", "ios"]
android = ["crossbow-android"]
ios = ["crossbow-ios"]
update-manifest = ["apple-bundle", "android-manifest"]
[workspace]
members = [
"plugins/*",
"crossbundle/*",
"platform/*",
"examples/*",
]