Skip to content

Commit

Permalink
Release xbuild 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvc94ch committed Dec 21, 2022
1 parent a04ad19 commit 256b34c
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions apk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "apk"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Library for creating and signing apks."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand All @@ -17,7 +17,7 @@ rsa = "0.7.2"
serde = { version = "1.0.151", features = ["derive"] }
sha2 = { version = "0.10.6", features = ["oid"] }
tracing = "0.1.37"
xcommon = { version = "0.2.0", path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
zip = { version = "0.6.3", default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions appbundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "appbundle"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
description = "Library for creating and signing appbundles."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand All @@ -17,4 +17,4 @@ rasn = "0.6.1"
rasn-cms = "0.6.0"
serde = { version = "1.0.151", features = ["derive"] }
x509-certificate = "0.16.0"
xcommon = { version = "0.2.0", path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
6 changes: 3 additions & 3 deletions appimage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "appimage"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Library for creating and signing appimages."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
anyhow = "1.0.68"
xcommon = { version = "0.2.0", path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
6 changes: 3 additions & 3 deletions msix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "msix"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Library for creating and signing msix packages."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand All @@ -17,7 +17,7 @@ rasn-cms = "0.6.0"
rasn-pkix = "0.6.0"
serde = { version = "1.0.151", features = ["derive"] }
sha2 = "0.10.6"
xcommon = { version = "0.2.0", path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
zip = { version = "0.6.3", default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions mvn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "mvn"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Library for fetching and resolving maven dependencies."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand All @@ -12,4 +12,4 @@ log = "0.4.17"
pubgrub = "0.2.1"
quick-xml = { version = "0.26.0", features = ["serialize"] }
serde = { version = "1.0.151", features = ["derive"] }
xcommon = { path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
4 changes: 2 additions & 2 deletions pri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "pri"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Library for creating and parsing pri files."
repository = "https://github.com/cloudpeers/xbuild"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand Down
18 changes: 9 additions & 9 deletions xbuild/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "xbuild"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
description = "Builds flutter/rust mobile/desktop projects."
repository = "https://github.com/cloudpeers/x"
description = "Builds rust mobile/desktop projects."
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
android-sdkmanager-rs = "0.5.0"
anyhow = "1.0.68"
apk = { version = "0.3.0", path = "../apk" }
appbundle = { version = "0.2.0", path = "../appbundle" }
appimage = { version = "0.3.0", path = "../appimage" }
apk = { version = "0.4.0", path = "../apk" }
appbundle = { version = "0.3.0", path = "../appbundle" }
appimage = { version = "0.4.0", path = "../appimage" }
apple-dmg = "0.2.0"
app-store-connect = "0.1.0"
base64 = "0.20.0"
Expand All @@ -24,8 +24,8 @@ glob = "0.3.0"
indicatif = "0.17.2"
log = "0.4.17"
log-panics = "2.1.0"
msix = { version = "0.3.0", path = "../msix" }
mvn = { version = "0.1.0", path = "../mvn" }
msix = { version = "0.4.0", path = "../msix" }
mvn = { version = "0.2.0", path = "../mvn" }
path-slash = "0.2.1"
plist = "1.3.1"
quick-xml = { version = "0.26.0", features = ["serialize"] }
Expand All @@ -39,7 +39,7 @@ tracing = { version = "0.1.37", default-features = false }
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["env-filter", "fmt"] }
which = "4.3.0"
xcommon = { version = "0.2.0", path = "../xcommon" }
xcommon = { version = "0.3.0", path = "../xcommon" }
zip = { version = "0.6.3", default-features = false }
zstd = "0.12.1"

Expand Down
2 changes: 1 addition & 1 deletion xbuild/src/command/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn new(name: &str) -> Result<()> {
std::fs::create_dir(&kotlin)?;
std::fs::write(
root.join("Cargo.toml"),
include_bytes!("../../template/Cargo.toml"),
include_bytes!("../../template/Cargo_toml"),
)?;
std::fs::write(
root.join(".gitignore"),
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions xcommon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "xcommon"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
description = "Utilities for x."
repository = "https://github.com/cloudpeers/x"
repository = "https://github.com/rust-mobile/xbuild"
license = "Apache-2.0 OR MIT"

[dependencies]
Expand Down

0 comments on commit 256b34c

Please sign in to comment.