diff --git a/apk/Cargo.toml b/apk/Cargo.toml index 24a83341..520e3b0e 100644 --- a/apk/Cargo.toml +++ b/apk/Cargo.toml @@ -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] @@ -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] diff --git a/appbundle/Cargo.toml b/appbundle/Cargo.toml index 045f876b..80d0c8e2 100644 --- a/appbundle/Cargo.toml +++ b/appbundle/Cargo.toml @@ -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] @@ -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" } diff --git a/appimage/Cargo.toml b/appimage/Cargo.toml index 131b09f6..83669ae7 100644 --- a/appimage/Cargo.toml +++ b/appimage/Cargo.toml @@ -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" } diff --git a/msix/Cargo.toml b/msix/Cargo.toml index 51080515..466bb5a7 100644 --- a/msix/Cargo.toml +++ b/msix/Cargo.toml @@ -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] @@ -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] diff --git a/mvn/Cargo.toml b/mvn/Cargo.toml index 85310f4d..3c3e7c95 100644 --- a/mvn/Cargo.toml +++ b/mvn/Cargo.toml @@ -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] @@ -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" } diff --git a/pri/Cargo.toml b/pri/Cargo.toml index 0bdc035b..9056d229 100644 --- a/pri/Cargo.toml +++ b/pri/Cargo.toml @@ -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] diff --git a/xbuild/Cargo.toml b/xbuild/Cargo.toml index 98814acb..11b03053 100644 --- a/xbuild/Cargo.toml +++ b/xbuild/Cargo.toml @@ -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" @@ -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"] } @@ -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" diff --git a/xbuild/src/command/new.rs b/xbuild/src/command/new.rs index 3119ddee..630819e9 100644 --- a/xbuild/src/command/new.rs +++ b/xbuild/src/command/new.rs @@ -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"), diff --git a/xbuild/template/Cargo.toml b/xbuild/template/Cargo_toml similarity index 100% rename from xbuild/template/Cargo.toml rename to xbuild/template/Cargo_toml diff --git a/xcommon/Cargo.toml b/xcommon/Cargo.toml index cd8ea90d..4d725d7d 100644 --- a/xcommon/Cargo.toml +++ b/xcommon/Cargo.toml @@ -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]