Skip to content

Commit 256b34c

Browse files
committed
Release xbuild 0.2.0
1 parent a04ad19 commit 256b34c

File tree

10 files changed

+29
-29
lines changed

10 files changed

+29
-29
lines changed

apk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "apk"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "Library for creating and signing apks."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
@@ -17,7 +17,7 @@ rsa = "0.7.2"
1717
serde = { version = "1.0.151", features = ["derive"] }
1818
sha2 = { version = "0.10.6", features = ["oid"] }
1919
tracing = "0.1.37"
20-
xcommon = { version = "0.2.0", path = "../xcommon" }
20+
xcommon = { version = "0.3.0", path = "../xcommon" }
2121
zip = { version = "0.6.3", default-features = false }
2222

2323
[dev-dependencies]

appbundle/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "appbundle"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Library for creating and signing appbundles."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
@@ -17,4 +17,4 @@ rasn = "0.6.1"
1717
rasn-cms = "0.6.0"
1818
serde = { version = "1.0.151", features = ["derive"] }
1919
x509-certificate = "0.16.0"
20-
xcommon = { version = "0.2.0", path = "../xcommon" }
20+
xcommon = { version = "0.3.0", path = "../xcommon" }

appimage/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "appimage"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "Library for creating and signing appimages."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
1010
anyhow = "1.0.68"
11-
xcommon = { version = "0.2.0", path = "../xcommon" }
11+
xcommon = { version = "0.3.0", path = "../xcommon" }

msix/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "msix"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "Library for creating and signing msix packages."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
@@ -17,7 +17,7 @@ rasn-cms = "0.6.0"
1717
rasn-pkix = "0.6.0"
1818
serde = { version = "1.0.151", features = ["derive"] }
1919
sha2 = "0.10.6"
20-
xcommon = { version = "0.2.0", path = "../xcommon" }
20+
xcommon = { version = "0.3.0", path = "../xcommon" }
2121
zip = { version = "0.6.3", default-features = false }
2222

2323
[dev-dependencies]

mvn/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "mvn"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Library for fetching and resolving maven dependencies."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
@@ -12,4 +12,4 @@ log = "0.4.17"
1212
pubgrub = "0.2.1"
1313
quick-xml = { version = "0.26.0", features = ["serialize"] }
1414
serde = { version = "1.0.151", features = ["derive"] }
15-
xcommon = { path = "../xcommon" }
15+
xcommon = { version = "0.3.0", path = "../xcommon" }

pri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "pri"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Library for creating and parsing pri files."
6-
repository = "https://github.com/cloudpeers/xbuild"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]

xbuild/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "xbuild"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2021"
5-
description = "Builds flutter/rust mobile/desktop projects."
6-
repository = "https://github.com/cloudpeers/x"
5+
description = "Builds rust mobile/desktop projects."
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]
1010
android-sdkmanager-rs = "0.5.0"
1111
anyhow = "1.0.68"
12-
apk = { version = "0.3.0", path = "../apk" }
13-
appbundle = { version = "0.2.0", path = "../appbundle" }
14-
appimage = { version = "0.3.0", path = "../appimage" }
12+
apk = { version = "0.4.0", path = "../apk" }
13+
appbundle = { version = "0.3.0", path = "../appbundle" }
14+
appimage = { version = "0.4.0", path = "../appimage" }
1515
apple-dmg = "0.2.0"
1616
app-store-connect = "0.1.0"
1717
base64 = "0.20.0"
@@ -24,8 +24,8 @@ glob = "0.3.0"
2424
indicatif = "0.17.2"
2525
log = "0.4.17"
2626
log-panics = "2.1.0"
27-
msix = { version = "0.3.0", path = "../msix" }
28-
mvn = { version = "0.1.0", path = "../mvn" }
27+
msix = { version = "0.4.0", path = "../msix" }
28+
mvn = { version = "0.2.0", path = "../mvn" }
2929
path-slash = "0.2.1"
3030
plist = "1.3.1"
3131
quick-xml = { version = "0.26.0", features = ["serialize"] }
@@ -39,7 +39,7 @@ tracing = { version = "0.1.37", default-features = false }
3939
tracing-log = "0.1.3"
4040
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["env-filter", "fmt"] }
4141
which = "4.3.0"
42-
xcommon = { version = "0.2.0", path = "../xcommon" }
42+
xcommon = { version = "0.3.0", path = "../xcommon" }
4343
zip = { version = "0.6.3", default-features = false }
4444
zstd = "0.12.1"
4545

xbuild/src/command/new.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn new(name: &str) -> Result<()> {
1010
std::fs::create_dir(&kotlin)?;
1111
std::fs::write(
1212
root.join("Cargo.toml"),
13-
include_bytes!("../../template/Cargo.toml"),
13+
include_bytes!("../../template/Cargo_toml"),
1414
)?;
1515
std::fs::write(
1616
root.join(".gitignore"),
File renamed without changes.

xcommon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "xcommon"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Utilities for x."
6-
repository = "https://github.com/cloudpeers/x"
6+
repository = "https://github.com/rust-mobile/xbuild"
77
license = "Apache-2.0 OR MIT"
88

99
[dependencies]

0 commit comments

Comments
 (0)