Skip to content

Commit 61884f0

Browse files
committed
Alter README.md and bump version
1 parent 3c661b1 commit 61884f0

File tree

10 files changed

+33
-18
lines changed

10 files changed

+33
-18
lines changed

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbow"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Cross-Platform Rust Toolkit for Games 🏹"
@@ -11,11 +11,11 @@ readme = "README.md"
1111
exclude = [".github/**/*"]
1212

1313
[dependencies]
14-
crossbundle-derive = { path = "crossbundle/derive", version = "0.1.1" }
15-
crossbundle-tools = { path = "crossbundle/tools", version = "0.1.1", optional = true }
14+
crossbundle-derive = { path = "crossbundle/derive", version = "0.1.2" }
15+
crossbundle-tools = { path = "crossbundle/tools", version = "0.1.2", optional = true }
1616

17-
crossbow-ads = { path = "plugins/ads", version = "0.1.1", optional = true }
18-
crossbow-permissions = { path = "plugins/permissions", version = "0.1.1", optional = true }
17+
crossbow-ads = { path = "plugins/ads", version = "0.1.2", optional = true }
18+
crossbow-permissions = { path = "plugins/permissions", version = "0.1.2", optional = true }
1919

2020
[target.'cfg(target_os = "android")'.dependencies]
2121
ndk-glue = "0.6.0"

README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,22 @@ A goal of the `crossbow` project is to provide a complete infrastructure for gam
1717

1818
## Documentation
1919

20-
To learn how to run example project on your own - read [this](https://github.com/dodorare/crossbow/wiki).
20+
To learn how to run an example project on your own, build, test, and start using `crossbow` - read [our documentation](./docs/README.md).
21+
22+
## Project structure
23+
24+
| Name | Description | Status |
25+
| ---- | ----------- | ------ |
26+
| [crossbundle](./crossbundle/cli/README.md) | Command-line tool for building applications ||
27+
| [crossbundle-tools](./crossbundle/tools/README.md) | Toolkit used in `crossbundle` to build/pack/sign bundles ||
28+
| [crossbundle-derive](./crossbundle/derive/README.md) | Derive macros for projects built with `crossbow` ||
29+
| [crossbow-ads](./crossbow/ads/README.md) | Plugin for advertisements | 🛠 |
30+
| [crossbow-permissions](./crossbow/permissions/README.md) | Plugin for runtime permissions | 🛠 |
31+
| [android-tools-rs](https://github.com/dodorare/android-tools-rs) | Android-related tools for building and developing application ||
32+
| [android-manifest-rs](https://github.com/dodorare/android-manifest-rs) | [AndroidManifest](https://developer.android.com/guide/topics/manifest/manifest-intro) serializer and deserializer for Rust ||
33+
| [apple-bundle-rs](https://github.com/dodorare/apple-bundle-rs) | [AppleBundleResources](https://developer.apple.com/documentation/bundleresources) serializer and deserializer for Rust ||
34+
35+
✅ = Works and tested — 🆗 = Works but may contain bugs — 🛠 = Under development
2136

2237
## Partners
2338

crossbundle/cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbundle"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Build and publish apps for Android/iOS"
@@ -22,7 +22,7 @@ name = "cargo-crossbundle"
2222
path = "src/main.rs"
2323

2424
[dependencies]
25-
crossbundle-tools = { path = "../tools", version = "0.1.1" }
25+
crossbundle-tools = { path = "../tools", version = "0.1.2" }
2626

2727
clap = { version = "3.0.5", features = ["derive"] }
2828
cargo_toml = "0.10.1"

crossbundle/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbundle-derive"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Cross-Platform Rust Toolkit for Games 🏹"

crossbundle/tools/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbundle-tools"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Build and publish apps for Android/iOS"

examples/bevy-2d/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "bevy-2d"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["DodoRare Team <support@dodorare.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
crossbow = { version = "0.1.1", path = "../../" }
8+
crossbow = { version = "0.1.2", path = "../../" }
99
log = "0.4"
1010
anyhow = "1.0"
1111
bevy = { version = "0.6.0", features = ["mp3"] }

examples/bevy-3d/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "bevy-3d"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["DodoRare Team <support@dodorare.com>"]
55
edition = "2021"
66

77
[dependencies]
8-
crossbow = { version = "0.1.1", path = "../../" }
8+
crossbow = { version = "0.1.2", path = "../../" }
99
log = "0.4"
1010
anyhow = "1.0"
1111
bevy = "0.6.0"

examples/macroquad-3d/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "macroquad-3d"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["DodoRare Team <support@dodorare.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
crossbow = { version = "0.1.1", path = "../../" }
8+
crossbow = { version = "0.1.2", path = "../../" }
99
log = "0.4"
1010
anyhow = "1.0"
1111
macroquad = "0.3"

plugins/ads/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbow-ads"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Cross-Platform Rust Toolkit for Games 🏹"

plugins/permissions/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crossbow-permissions"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["DodoRare Team <support@dodorare.com>"]
66
description = "Cross-Platform Rust Toolkit for Games 🏹"

0 commit comments

Comments
 (0)