diff --git a/Formula/ethrex.rb b/Formula/ethrex.rb index 2a8d0a5..4908ef4 100644 --- a/Formula/ethrex.rb +++ b/Formula/ethrex.rb @@ -1,8 +1,8 @@ class Ethrex < Formula desc "Minimalist, fast and modular implementation of the Ethereum protocol in Rust" homepage "https://docs.ethrex.xyz/" - url "https://github.com/lambdaclass/ethrex/archive/refs/tags/v24.0.0.tar.gz" - sha256 "6fa5e4efb0b49351a5ede04cac087481db99a1cb32f6836a1895037efc3de493" + url "https://github.com/lambdaclass/ethrex/archive/refs/tags/v25.0.0.tar.gz" + sha256 "5f3e13b398a63d94ba6c94348dc5cab5b9f1c4c03ad95b22740dd1d360266b2a" license "Apache-2.0" livecheck do @@ -11,14 +11,14 @@ class Ethrex < Formula end bottle do - root_url "https://github.com/lambdaclass/homebrew-tap/releases/download/v24.0.0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "40ca1d79b0d618da24926d35248b8b5884f22c3b8e9c8105be85b441feda4c8e" + root_url "https://github.com/lambdaclass/homebrew-tap/releases/download/v25.0.0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "732dd90a2fc3dece7bfa10eda763419d8abf2d24ee3a9486f95555e49a330242" end depends_on "rustup" => :build def install - system "rustup", "toolchain", "install", "1.91" + system "rustup", "toolchain", "install", "1.93" system "cargo", "install", *std_cargo_args(path: "cmd/ethrex") end