Skip to content

Commit

Permalink
Alter README.md and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
enfipy committed Jan 9, 2022
1 parent 3c661b1 commit 61884f0
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbow"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Cross-Platform Rust Toolkit for Games 🏹"
Expand All @@ -11,11 +11,11 @@ readme = "README.md"
exclude = [".github/**/*"]

[dependencies]
crossbundle-derive = { path = "crossbundle/derive", version = "0.1.1" }
crossbundle-tools = { path = "crossbundle/tools", version = "0.1.1", optional = true }
crossbundle-derive = { path = "crossbundle/derive", version = "0.1.2" }
crossbundle-tools = { path = "crossbundle/tools", version = "0.1.2", optional = true }

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

[target.'cfg(target_os = "android")'.dependencies]
ndk-glue = "0.6.0"
Expand Down
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,22 @@ A goal of the `crossbow` project is to provide a complete infrastructure for gam

## Documentation

To learn how to run example project on your own - read [this](https://github.com/dodorare/crossbow/wiki).
To learn how to run an example project on your own, build, test, and start using `crossbow` - read [our documentation](./docs/README.md).

## Project structure

| Name | Description | Status |
| ---- | ----------- | ------ |
| [crossbundle](./crossbundle/cli/README.md) | Command-line tool for building applications ||
| [crossbundle-tools](./crossbundle/tools/README.md) | Toolkit used in `crossbundle` to build/pack/sign bundles ||
| [crossbundle-derive](./crossbundle/derive/README.md) | Derive macros for projects built with `crossbow` ||
| [crossbow-ads](./crossbow/ads/README.md) | Plugin for advertisements | 🛠 |
| [crossbow-permissions](./crossbow/permissions/README.md) | Plugin for runtime permissions | 🛠 |
| [android-tools-rs](https://github.com/dodorare/android-tools-rs) | Android-related tools for building and developing application ||
| [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 ||
| [apple-bundle-rs](https://github.com/dodorare/apple-bundle-rs) | [AppleBundleResources](https://developer.apple.com/documentation/bundleresources) serializer and deserializer for Rust ||

✅ = Works and tested — 🆗 = Works but may contain bugs — 🛠 = Under development

## Partners

Expand Down
4 changes: 2 additions & 2 deletions crossbundle/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbundle"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Build and publish apps for Android/iOS"
Expand All @@ -22,7 +22,7 @@ name = "cargo-crossbundle"
path = "src/main.rs"

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

clap = { version = "3.0.5", features = ["derive"] }
cargo_toml = "0.10.1"
Expand Down
2 changes: 1 addition & 1 deletion crossbundle/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbundle-derive"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Cross-Platform Rust Toolkit for Games 🏹"
Expand Down
2 changes: 1 addition & 1 deletion crossbundle/tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbundle-tools"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Build and publish apps for Android/iOS"
Expand Down
4 changes: 2 additions & 2 deletions examples/bevy-2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy-2d"
version = "0.1.1"
version = "0.1.2"
authors = ["DodoRare Team <[email protected]>"]
edition = "2018"

[dependencies]
crossbow = { version = "0.1.1", path = "../../" }
crossbow = { version = "0.1.2", path = "../../" }
log = "0.4"
anyhow = "1.0"
bevy = { version = "0.6.0", features = ["mp3"] }
Expand Down
4 changes: 2 additions & 2 deletions examples/bevy-3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy-3d"
version = "0.1.1"
version = "0.1.2"
authors = ["DodoRare Team <[email protected]>"]
edition = "2021"

[dependencies]
crossbow = { version = "0.1.1", path = "../../" }
crossbow = { version = "0.1.2", path = "../../" }
log = "0.4"
anyhow = "1.0"
bevy = "0.6.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/macroquad-3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "macroquad-3d"
version = "0.1.1"
version = "0.1.2"
authors = ["DodoRare Team <[email protected]>"]
edition = "2018"

[dependencies]
crossbow = { version = "0.1.1", path = "../../" }
crossbow = { version = "0.1.2", path = "../../" }
log = "0.4"
anyhow = "1.0"
macroquad = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion plugins/ads/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbow-ads"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Cross-Platform Rust Toolkit for Games 🏹"
Expand Down
2 changes: 1 addition & 1 deletion plugins/permissions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crossbow-permissions"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["DodoRare Team <[email protected]>"]
description = "Cross-Platform Rust Toolkit for Games 🏹"
Expand Down

0 comments on commit 61884f0

Please sign in to comment.