From 23eecad525d96d850658c4cf561b763299b53d5e Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Tue, 23 Jul 2024 21:47:38 -0500 Subject: [PATCH] Use a released version of ubi --- Cargo.lock | 5 +++-- Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 592c0fd08..f2488fc92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4059,8 +4059,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ubi" -version = "0.1.0" -source = "git+https://github.com/houseabsolute/ubi.git?branch=library-ize#a183c01a34860c8e572cc317599c5ac59b6c0f24" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b22346bf4219ee3fba90734b4a0cc1a14c6a3d7c84fa6cff68c9a82293874972" dependencies = [ "anyhow", "binstall-tar", diff --git a/Cargo.toml b/Cargo.toml index 4ea7c9ba6..7cbd1423a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -117,6 +117,7 @@ tokio = { version = "1.37.0", features = [ ] } toml = { version = "0.8.12", features = ["parse"] } toml_edit = { version = "0.22.12", features = ["parse"] } +ubi = "0.1.0" url = "2.5.0" usage-lib = { version = "0.3", features = ["clap"] } versions = { version = "6.2.0", features = ["serde"] } @@ -126,8 +127,6 @@ which = "6.0.1" xx = { version = "1.0.0", features = ["glob"] } zip = { version = "2", default-features = false, features = ["deflate"] } -ubi = { git = "https://github.com/houseabsolute/ubi.git", branch = "library-ize" } - [target.'cfg(unix)'.dependencies] exec = "0.3" nix = { version = "0.29", features = ["signal", "user"] }