diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 140eb4e32..fee42b6a3 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -25,13 +25,13 @@ jobs: os: ubuntu-latest no-zstd-thin: true - # - target: armv7-unknown-linux-gnueabihf - # os: ubuntu-latest - # no-zstd-thin: true + - target: armv7-unknown-linux-gnueabihf + os: ubuntu-latest + no-zstd-thin: true - # - target: armv7-unknown-linux-musleabihf - # os: ubuntu-latest - # no-zstd-thin: true + - target: armv7-unknown-linux-musleabihf + os: ubuntu-latest + no-zstd-thin: true - target: x86_64-apple-darwin os: macos-latest diff --git a/Cargo.lock b/Cargo.lock index ea2e56949..19d3efebc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1229,8 +1229,7 @@ checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" [[package]] name = "unrar" version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "850dc99da3a3c12a9400a52a3c510057bf2b16c6c9a495492850d25ed9d757ab" +source = "git+https://github.com/lmkra/unrar.rs.git?branch=ouch-support#a1ea79be6d15328b8f9018520b9506151ad11631" dependencies = [ "bitflags 1.3.2", "regex", @@ -1241,8 +1240,7 @@ dependencies = [ [[package]] name = "unrar_sys" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95e536227cb6a91f8e88adb0219912e004a107c9724a094f90baad9229281efa" +source = "git+https://github.com/lmkra/unrar.rs.git?branch=ouch-support#a1ea79be6d15328b8f9018520b9506151ad11631" dependencies = [ "cc", "libc", diff --git a/Cargo.toml b/Cargo.toml index b84f134d3..306de48bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ snap = "1.1.0" tar = "0.4.40" tempfile = "3.8.0" time = { version = "0.3.29", default-features = false } -unrar = "0.5.1" +unrar = { git = "https://github.com/lmkra/unrar.rs.git", branch = "ouch-support" } xz2 = "0.1.7" zip = { version = "0.6.6", default-features = false, features = ["time"] } zstd = { version = "0.12.4", default-features = false }