diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml index b250162..0400228 100644 --- a/.github/workflows/nightly-release.yml +++ b/.github/workflows/nightly-release.yml @@ -13,6 +13,9 @@ jobs: - x86_64-unknown-linux-gnu - aarch64-unknown-linux-gnu - i686-unknown-linux-gnu + include: + - feature: stateless + cargo_args: --exclude rln-cli name: Linux build runs-on: ubuntu-latest steps: @@ -30,7 +33,7 @@ jobs: run: make installdeps - name: cross build run: | - cross build --release --target ${{ matrix.target }} --features ${{ matrix.feature }} --workspace --exclude rln-wasm + cross build --release --target ${{ matrix.target }} --features ${{ matrix.feature }} --workspace --exclude rln-wasm ${{ matrix.cargo_args }} mkdir release cp target/${{ matrix.target }}/release/librln* release/ tar -czvf ${{ matrix.target }}-${{ matrix.feature }}-rln.tar.gz release/ @@ -51,6 +54,9 @@ jobs: target: - x86_64-apple-darwin - aarch64-apple-darwin + include: + - feature: stateless + cargo_args: --exclude rln-cli steps: - name: Checkout sources uses: actions/checkout@v3 @@ -66,7 +72,7 @@ jobs: run: make installdeps - name: cross build run: | - cross build --release --target ${{ matrix.target }} --features ${{ matrix.feature }} --workspace --exclude rln-wasm + cross build --release --target ${{ matrix.target }} --features ${{ matrix.feature }} --workspace --exclude rln-wasm ${{ matrix.cargo_args }} mkdir release cp target/${{ matrix.target }}/release/librln* release/ tar -czvf ${{ matrix.target }}-${{ matrix.feature }}-rln.tar.gz release/ diff --git a/rln-cli/Cargo.toml b/rln-cli/Cargo.toml index 9e710f4..86f168e 100644 --- a/rln-cli/Cargo.toml +++ b/rln-cli/Cargo.toml @@ -4,7 +4,7 @@ version = "0.3.0" edition = "2021" [dependencies] -rln = { path = "../rln" } +rln = { path = "../rln", default-features = true, features = ["arkzkey"] } clap = { version = "4.2.7", features = ["cargo", "derive", "env"]} clap_derive = { version = "=4.2.0" } color-eyre = "=0.6.2"