diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9f5162..f5a3345 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update -y - sudo apt-get install pkg-config clang gcc-aarch64-linux-gnu musl-tools -y + sudo apt-get install clang gcc-aarch64-linux-gnu musl-tools -y - name: Add rustup target run: rustup target add ${{ matrix.target }} diff --git a/cli-client/Cargo.lock b/cli-client/Cargo.lock index 065eca1..6bc616b 100644 --- a/cli-client/Cargo.lock +++ b/cli-client/Cargo.lock @@ -911,6 +911,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.3.1+3.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.103" @@ -919,6 +928,7 @@ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] @@ -1366,6 +1376,7 @@ dependencies = [ "assert_fs", "clap", "config", + "openssl", "predicates", "reqwest", "serde", diff --git a/cli-client/Cargo.toml b/cli-client/Cargo.toml index e25329b..b9e2eab 100644 --- a/cli-client/Cargo.toml +++ b/cli-client/Cargo.toml @@ -17,6 +17,7 @@ reqwest = "0.11" serde = "1.0.208" config = "0.14.0" serde_json = "1.0" +openssl = { version = "0.10", features = ["vendored"] } [dev-dependencies] assert_cmd = "2.0.16"