├── README.md └── Formula └── jwt-hack.rb /README.md: -------------------------------------------------------------------------------- 1 | # homebrew-jwt-hack -------------------------------------------------------------------------------- /Formula/jwt-hack.rb: -------------------------------------------------------------------------------- 1 | # typed: true 2 | # frozen_string_literal: true 3 | 4 | # This file was generated by Homebrew Releaser. DO NOT EDIT. 5 | class JwtHack < Formula 6 | desc "Json web token hack toolkit" 7 | homepage "https://github.com/hahwul/jwt-hack" 8 | url "https://github.com/hahwul/jwt-hack/archive/refs/tags/v2.4.0.tar.gz" 9 | sha256 "c167f595e5552dfbf5bd3fd79e2f061b1ad9d99790ffd036351172997a6de678" 10 | license "MIT" 11 | 12 | depends_on "rust" 13 | 14 | def install 15 | system "cargo build --release" 16 | bin.install "target/release/jwt-hack" 17 | end 18 | 19 | test do 20 | system "{bin}/jwt-hack", "-V" 21 | end 22 | end 23 | --------------------------------------------------------------------------------