From 91ab3d8097082ba2f7212dd0aa0d557c8f6b8b14 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 15:40:31 +0400 Subject: [PATCH 01/14] Remove outdated comment --- Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fef761e..dea6db0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,6 @@ description = "Gevulot Control CLI" [dependencies] # TODO: change rev to tag when available -# NOTE: this revision is aligned with `mia-installer` dependency. -# Be careful changing it. gevulot-rs = { git = "https://github.com/gevulotnetwork/gevulot-rs.git", rev = "e972c7c73a88182d22121a995f01abed04dff106" } bip32 = "0.5.1" From b64f52a24be08e3325f74a096f86a7e3a49f1bc7 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 15:42:13 +0400 Subject: [PATCH 02/14] Use gevulot-rs from crates.io registry --- Cargo.lock | 36 ++++++++++++++++++++++++++++++++++-- Cargo.toml | 3 +-- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f214c6d..feab43b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1057,6 +1057,38 @@ dependencies = [ "tonic-build", ] +[[package]] +name = "gevulot-rs" +version = "0.1.3-pre.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1977ff04d85b4193740d7912da483af0b87446b3c8863b9912a78a985d85f09f" +dependencies = [ + "backon", + "bip32", + "const_format", + "cosmos-sdk-proto", + "cosmrs", + "derivative", + "derive_builder", + "hex", + "http 1.1.0", + "log", + "pretty_env_logger", + "prost 0.13.3", + "prost-build", + "rand 0.8.5", + "rand_core 0.6.4", + "semver", + "serde", + "serde_json", + "tendermint", + "thiserror", + "tokio", + "tonic", + "tonic-buf-build", + "tonic-build", +] + [[package]] name = "gimli" version = "0.31.1" @@ -1096,7 +1128,7 @@ dependencies = [ "clap_complete", "cosmrs", "env_logger 0.11.5", - "gevulot-rs", + "gevulot-rs 0.1.3-pre.2", "log", "mia-installer", "num_cpus", @@ -1633,7 +1665,7 @@ dependencies = [ "env_logger 0.11.5", "flate2", "fs_extra", - "gevulot-rs", + "gevulot-rs 0.1.0", "log", "octocrab", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index dea6db0..1b41af4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,8 +8,7 @@ repository = "https://github.com/gevulotnetwork/gvltctl" description = "Gevulot Control CLI" [dependencies] -# TODO: change rev to tag when available -gevulot-rs = { git = "https://github.com/gevulotnetwork/gevulot-rs.git", rev = "e972c7c73a88182d22121a995f01abed04dff106" } +gevulot-rs = "0.1.3-pre.2" bip32 = "0.5.1" clap = { version = "4", features = ["env", "cargo"] } From f156375053d4309774e76d77c88083761f5d4137 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 15:43:37 +0400 Subject: [PATCH 03/14] Bump gvltctl version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index feab43b..920d310 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1120,7 +1120,7 @@ dependencies = [ [[package]] name = "gvltctl" -version = "0.1.2" +version = "0.1.3-pre" dependencies = [ "anyhow", "bip32", diff --git a/Cargo.toml b/Cargo.toml index 1b41af4..c3109e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gvltctl" -version = "0.1.2" +version = "0.1.3-pre" edition = "2021" authors = ["Gevulot Team"] license = "MIT OR Apache-2.0" From 0e88bf27dde60ac6eb82b97e4510f8aeacc75614 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 19:33:36 +0400 Subject: [PATCH 04/14] release: add MacOS dependencies installation --- .github/workflows/release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 53537f3..cd2e069 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -103,6 +103,12 @@ jobs: sudo apt-get update sudo apt-get install -y openssl ca-certificates pkg-config cmake libssl-dev + - name: Install packages (MacOS) + if: matrix.os == 'macos-latest' + run: | + brew update + brew install openssl pkg-config cmake + - name: Install buf if: matrix.os == 'ubuntu-latest' uses: bufbuild/buf-setup-action@v1 From 900e4b9ebc4a21037f5797935ad3e2aacc1f034c Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 19:54:33 +0400 Subject: [PATCH 05/14] release: refine build target list Also fixed shell defition and target flag setting --- .github/workflows/release.yaml | 59 +++++++++++++--------------------- 1 file changed, 23 insertions(+), 36 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cd2e069..3a045f0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,6 +1,6 @@ # From https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml -name: release +name: Release on: workflow_dispatch: @@ -16,6 +16,9 @@ jobs: create-release: name: create-release runs-on: ubuntu-latest + defaults: + run: + shell: bash steps: - uses: actions/checkout@v4 @@ -30,7 +33,6 @@ jobs: run: | echo "version is: $VERSION" - name: Check that tag version and Cargo.toml version are the same - shell: bash run: | VERSION=${VERSION#v} # strip leading v if present only for the Cargo.toml check if ! grep -q "version = \"$VERSION\"" Cargo.toml; then @@ -47,9 +49,12 @@ jobs: release_name: ${{ env.RELEASE_NAME }} build-release: - name: build-release + name: ${{ matrix.build }} needs: ['create-release'] runs-on: ${{ matrix.os }} + defaults: + run: + shell: bash env: # For some builds, we use cross to test on 32-bit and big-endian # systems. @@ -72,25 +77,23 @@ jobs: fail-fast: false matrix: include: - - build: stable-x86 + - build: ubuntu-x86 os: ubuntu-latest rust: stable target: x86_64-unknown-linux-gnu - qemu: i386 - - build: stable-aarch64 - os: ubuntu-latest + # - build: ubuntu-aarch64 + # os: ubuntu-latest + # rust: stable + # target: aarch64-unknown-linux-gnu + # strip: aarch64-linux-gnu-strip + - build: macos-x86 + os: macos-latest rust: stable - target: aarch64-unknown-linux-gnu - strip: aarch64-linux-gnu-strip - qemu: qemu-aarch64 - # - build: macos - # os: macos-latest - # rust: nightly - # target: x86_64-apple-darwin - # - build: win-msvc - # os: windows-latest - # rust: nightly - # target: x86_64-pc-windows-msvc + target: x86_64-apple-darwin + - build: macos-aarch64 + os: macos-latest + rust: stable + target: aarch64-apple-darwin steps: - name: Checkout repository @@ -98,7 +101,6 @@ jobs: - name: Install packages (Ubuntu) if: matrix.os == 'ubuntu-latest' - shell: bash run: |- sudo apt-get update sudo apt-get install -y openssl ca-certificates pkg-config cmake libssl-dev @@ -110,11 +112,9 @@ jobs: brew install openssl pkg-config cmake - name: Install buf - if: matrix.os == 'ubuntu-latest' uses: bufbuild/buf-setup-action@v1 - name: Install Protoc - if: matrix.os == 'ubuntu-latest' uses: arduino/setup-protoc@v3 - name: Install Rust @@ -124,8 +124,8 @@ jobs: target: ${{ matrix.target }} - name: Use Cross - if: matrix.os == 'ubuntu-latest' && matrix.target != '' - shell: bash + # Build without Cross for native target + if: matrix.os == 'ubuntu-latest' && matrix.target != 'x86_64-unknown-linux-gnu' run: | # In the past, new releases of 'cross' have broken CI. So for now, we # pin it. We also use their pre-compiled binary releases because cross @@ -139,20 +139,15 @@ jobs: echo "CARGO=cross" >> $GITHUB_ENV - name: Set target variables - shell: bash run: | echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV - echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV - name: Show command used for Cargo - shell: bash run: | echo "cargo command is: ${{ env.CARGO }}" echo "target flag is: ${{ env.TARGET_FLAGS }}" - echo "target dir is: ${{ env.TARGET_DIR }}" - name: Build release binary - shell: bash run: | ${{ env.CARGO }} build --bin gvltctl --verbose --release ${{ env.TARGET_FLAGS }} if [ "${{ matrix.os }}" = "windows-latest" ]; then @@ -164,12 +159,10 @@ jobs: - name: Strip release binary (macos) if: matrix.os == 'macos-latest' - shell: bash run: strip "$BIN" - name: Strip release binary (cross) if: env.CARGO == 'cross' && matrix.strip != '' - shell: bash run: | docker run --rm -v \ "$PWD/target:/target:Z" \ @@ -179,24 +172,20 @@ jobs: - name: Strip release binary (native strip) if: matrix.os != 'macos-latest' && matrix.strip == '' - shell: bash run: strip "$BIN" - name: Determine archive name - shell: bash run: | version="${{ needs.create-release.outputs.version }}" echo "ARCHIVE=gvltctl-${{ matrix.target }}" >> $GITHUB_ENV - name: Creating directory for archive - shell: bash run: | mkdir -p "$ARCHIVE" cp "$BIN" "$ARCHIVE"/ cp README.md "$ARCHIVE"/ - name: Build archive (Windows) - shell: bash if: matrix.os == 'windows-latest' run: | 7z a "$ARCHIVE.zip" "$ARCHIVE" @@ -205,7 +194,6 @@ jobs: echo "ASSET_SUM=$ARCHIVE.zip.sha256" >> $GITHUB_ENV - name: Build archive (Unix) - shell: bash if: matrix.os != 'windows-latest' run: | tar czf "$ARCHIVE.tar.gz" "$ARCHIVE" @@ -216,7 +204,6 @@ jobs: - name: Upload release archive env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - shell: bash run: | release_name="v${{ needs.create-release.outputs.version }}" gh release upload "$release_name" ${{ env.ASSET }} ${{ env.ASSET_SUM }} From 17f91eaa763514bfa6158a782a3c29bf55e8faf8 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 20:09:40 +0400 Subject: [PATCH 06/14] release: add GitHub tokens to avoid API rate limits --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3a045f0..78b9522 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -113,9 +113,13 @@ jobs: - name: Install buf uses: bufbuild/buf-setup-action@v1 + with: + github_token: ${{ github.token }} - name: Install Protoc uses: arduino/setup-protoc@v3 + with: + repo-token: ${{ github.token }} - name: Install Rust uses: dtolnay/rust-toolchain@master From 3dfdbf72f5b7c94ba37eb36e0d6ee6e470b454b5 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Mon, 9 Dec 2024 20:25:39 +0400 Subject: [PATCH 07/14] release: fix release name on uploading --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 78b9522..c78e1fc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -209,5 +209,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - release_name="v${{ needs.create-release.outputs.version }}" + release_name="${{ needs.create-release.outputs.version }}" gh release upload "$release_name" ${{ env.ASSET }} ${{ env.ASSET_SUM }} From 1e8fd20f5e457dfdf106c5d3af6186924a3dc4c3 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Tue, 10 Dec 2024 13:28:09 +0400 Subject: [PATCH 08/14] Update mia-installer version --- Cargo.lock | 39 ++++----------------------------------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 920d310..85daf6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1026,37 +1026,6 @@ dependencies = [ "syn 2.0.79", ] -[[package]] -name = "gevulot-rs" -version = "0.1.0" -source = "git+https://github.com/gevulotnetwork/gevulot-rs.git?rev=e972c7c73a88182d22121a995f01abed04dff106#e972c7c73a88182d22121a995f01abed04dff106" -dependencies = [ - "backon", - "bip32", - "const_format", - "cosmos-sdk-proto", - "cosmrs", - "derivative", - "derive_builder", - "hex", - "http 1.1.0", - "log", - "pretty_env_logger", - "prost 0.13.3", - "prost-build", - "rand 0.8.5", - "rand_core 0.6.4", - "semver", - "serde", - "serde_json", - "tendermint", - "thiserror", - "tokio", - "tonic", - "tonic-buf-build", - "tonic-build", -] - [[package]] name = "gevulot-rs" version = "0.1.3-pre.2" @@ -1128,7 +1097,7 @@ dependencies = [ "clap_complete", "cosmrs", "env_logger 0.11.5", - "gevulot-rs 0.1.3-pre.2", + "gevulot-rs", "log", "mia-installer", "num_cpus", @@ -1658,14 +1627,14 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "mia-installer" -version = "0.2.3" -source = "git+https://github.com/gevulotnetwork/mia.git?tag=mia-installer-0.2.4#07ac1b6dbba8969cc09b54a6b68b02fb4f0afbbd" +version = "0.2.5" +source = "git+https://github.com/gevulotnetwork/mia.git?tag=mia-installer-0.2.5#2733a55e3290db99daaa5def9f4e77215df6c2fd" dependencies = [ "anyhow", "env_logger 0.11.5", "flate2", "fs_extra", - "gevulot-rs 0.1.0", + "gevulot-rs", "log", "octocrab", "reqwest", diff --git a/Cargo.toml b/Cargo.toml index c3109e6..c581839 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ tokio = { version = "1", features = ["full"] } toml = "0.8.19" [target.'cfg(target_os = "linux")'.dependencies] -mia-installer = { git = "https://github.com/gevulotnetwork/mia.git", tag = "mia-installer-0.2.4"} +mia-installer = { git = "https://github.com/gevulotnetwork/mia.git", tag = "mia-installer-0.2.5"} anyhow = "1" log = "0.4.22" From 8a0f7c3c882079aa2895f3f050549beeac8cd7c8 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Tue, 10 Dec 2024 13:31:57 +0400 Subject: [PATCH 09/14] release: build static executable --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c78e1fc..55f4f21 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -73,6 +73,8 @@ jobs: PCRE2_SYS_STATIC: 1 # To ensure openssl is static linked OPENSSL_STATIC: 1 + # Build static + RUSTFLAGS: "-C target-feature=+crt-static" strategy: fail-fast: false matrix: From c5cc9e81547122b8d39600f42518c9b448cbc5b3 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Wed, 11 Dec 2024 16:43:31 +0400 Subject: [PATCH 10/14] Add feature to use vendored OpenSSL --- Cargo.lock | 11 +++++++++++ Cargo.toml | 5 +++++ 2 files changed, 16 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 85daf6a..42723c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1102,6 +1102,7 @@ dependencies = [ "mia-installer", "num_cpus", "oci-spec", + "openssl", "rand_core 0.6.4", "serde", "serde_json", @@ -1849,6 +1850,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.4.1+3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.104" @@ -1857,6 +1867,7 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" dependencies = [ "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index c581839..7677c1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,11 @@ serde_json = "1" serde_yaml = "0.9.34" tokio = { version = "1", features = ["full"] } toml = "0.8.19" +openssl = { version = "*", optional = true } + +[features] +# This feature should be enabled when building static executable +openssl-vendored = ["openssl/vendored"] [target.'cfg(target_os = "linux")'.dependencies] mia-installer = { git = "https://github.com/gevulotnetwork/mia.git", tag = "mia-installer-0.2.5"} From 60e676be272d46fb6d35361e0cb794d4b0369dcb Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Wed, 11 Dec 2024 16:55:06 +0400 Subject: [PATCH 11/14] release: build release binary with vendored OpenSSL --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 55f4f21..f0b50ab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -155,7 +155,7 @@ jobs: - name: Build release binary run: | - ${{ env.CARGO }} build --bin gvltctl --verbose --release ${{ env.TARGET_FLAGS }} + ${{ env.CARGO }} build --bin gvltctl --verbose --release --features openssl-vendored ${{ env.TARGET_FLAGS }} if [ "${{ matrix.os }}" = "windows-latest" ]; then bin="target/${{ matrix.target }}/release/gvltctl.exe" else From d70d383c8a8b17bd665c9af28e8902b47b5547b9 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Wed, 11 Dec 2024 17:45:26 +0400 Subject: [PATCH 12/14] release: add licenses to distributable archive --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f0b50ab..0cd681e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -190,6 +190,7 @@ jobs: mkdir -p "$ARCHIVE" cp "$BIN" "$ARCHIVE"/ cp README.md "$ARCHIVE"/ + cp LICENSE* "$ARCHIVE"/ - name: Build archive (Windows) if: matrix.os == 'windows-latest' From db21956531f908d10a5f95ec37dd3f5e27e5b4b1 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Thu, 12 Dec 2024 18:02:40 +0400 Subject: [PATCH 13/14] Update README with installation instructions --- README.md | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc25b66..18940a3 100644 --- a/README.md +++ b/README.md @@ -1 +1,70 @@ -# gvltctl +# Gevulot Control CLI + +This tool is used to interact with Gevulot Network. + +## Installation + +### Pre-built releases + +You can download pre-built release binaries from [releases](https://github.com/gevulotnetwork/gvltctl/releases): + +Supported platforms: + +- `x86_64-unknown-linux-gnu` +- `x86_64-apple-darwin` +- `aarch64-apple-darwin` + +#### Installation of pre-built release + +1. Download archive + + ```shell + curl -fLO https://github.com/gevulotnetwork/gvltctl/releases/download/${VERSION}/gvltctl-${PLATFORM}.tar.gz + ``` + +2. (Optional) Verify checksum + + ```shell + curl -fLO https://github.com/gevulotnetwork/gvltctl/releases/download/${VERSION}/gvltctl-${PLATFORM}.tar.gz.sha256 + sha256sum -c gvltctl-${PLATFORM}.tar.gz.sha256 + ``` + +3. Install the binary + + ```shell + tar xf gvltctl-${PLATFORM}.tar.gz + cp gvltctl-${PLATFORM}/gvltctl $HOME/.local/bin + ``` + +### Compiling from sources + +```shell +cargo install --git https://github.com/gevulotnetwork/gvltctl.git --tag $VERSION +``` + +## Usage + +```shell +$ gvltctl --help +Gevulot Control CLI + +Usage: gvltctl + +Commands: + worker Commands related to workers + pin Commands related to pins + task Commands related to tasks + workflow Commands related to workflows + keygen Generate a new key + compute-key Compute a key + send Send tokens to a receiver on the Gevulot network + account-info Get the balance of the given account + generate-completion Generate shell completion scripts + sudo Perform administrative operations with sudo privileges + build Build a VM image from a container, rootfs directory, or Containerfile + help Print this message or the help of the given subcommand(s) + +Options: + -h, --help Print help + -V, --version Print version +``` From f73f57f1947956d3ca6f287c44d390a989741fe6 Mon Sep 17 00:00:00 2001 From: Alexander Evgin Date: Thu, 12 Dec 2024 18:03:42 +0400 Subject: [PATCH 14/14] Bump gevulot-rs version to 0.1.3-pre.3 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42723c1..7ab229e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,9 +1028,9 @@ dependencies = [ [[package]] name = "gevulot-rs" -version = "0.1.3-pre.2" +version = "0.1.3-pre.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1977ff04d85b4193740d7912da483af0b87446b3c8863b9912a78a985d85f09f" +checksum = "79c50801b8a96e1e3159339cb2b8bd679507d27ba806b17c9f3fe9c1dcd44178" dependencies = [ "backon", "bip32", diff --git a/Cargo.toml b/Cargo.toml index 7677c1d..bf3656c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/gevulotnetwork/gvltctl" description = "Gevulot Control CLI" [dependencies] -gevulot-rs = "0.1.3-pre.2" +gevulot-rs = "0.1.3-pre.3" bip32 = "0.5.1" clap = { version = "4", features = ["env", "cargo"] }