Skip to content

Commit

Permalink
Switch from the tar crate to binstall-tar
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Sep 9, 2023
1 parent 5be947f commit 703f5d8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0.75"
binstall-tar = "0.4.39"
bzip2 = "0.4.4"
clap = { version = "4.3.23", features = ["wrap_help"] }
fern = { version = "0.6.2", features = ["colored"] }
Expand All @@ -21,7 +22,6 @@ regex = "1.9.3"
result = "1.0.0"
serde = { version = "1.0.185", features = ["derive"] }
strum = { version = "0.25.0", features = ["derive"] }
tar = "0.4.40"
tempfile = "3.8.0"
thiserror = "1.0.47"
tokio = { version = "1.32.0", default-features = false, features = ["macros", "rt"] }
Expand Down
2 changes: 1 addition & 1 deletion src/ubi.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use anyhow::{anyhow, Context, Result};
use binstall_tar::Archive;
use bzip2::read::BzDecoder;
use fern::{
colors::{Color, ColoredLevelConfig},
Expand All @@ -22,7 +23,6 @@ use std::{
path::{Path, PathBuf},
};
use strum::{EnumIter, IntoEnumIterator};
use tar::Archive;
use tempfile::{tempdir, TempDir};
use url::Url;
use xz::read::XzDecoder;
Expand Down

0 comments on commit 703f5d8

Please sign in to comment.