class Streamtop < Formula
desc "HLS/DASH/IPTV stream diagnostics in the terminal"
homepage "https://github.com/Jorji49/streamtop"
url "https://github.com/Jorji49/streamtop/archive/refs/tags/v1.0.0.tar.gz"
sha256 "fee85cd03975aca8350ab566817c6a0010401e64140e0215e282a412eb309a0d"
license "MIT"
head "https://github.com/Jorji49/streamtop.git", branch: "main"
depends_on "rust" => :build
def install
system "cargo", "install", *std_cargo_args
end
test do
assert_match "streamtop", shell_output("#{bin}/streamtop --help")
end
end