Fix binary name to diskonaut

Even though the crate is named `diskonaut-ng` the binary should still be
called `diskonaut`.
This commit is contained in:
Greg Shuflin
2025-11-26 22:28:57 -08:00
parent 431a77d784
commit 5224fe4323
2 changed files with 6 additions and 2 deletions

2
Cargo.lock generated
View File

@@ -335,7 +335,7 @@ dependencies = [
[[package]]
name = "diskonaut-ng"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"anyhow",
"clap",

View File

@@ -1,7 +1,7 @@
[package]
name = "diskonaut-ng"
description = "Terminal disk space visual navigator"
version = "0.13.0"
version = "0.13.1"
authors = ["Aram Drevekenin <aram@poor.dev>", "Gregory Shuflin <greg@everydayimshuflin.com>"]
readme = "README.md"
homepage = "https://code.everydayimshuflin.com/greg/diskonaut"
@@ -9,6 +9,10 @@ repository = "https://code.everydayimshuflin.com/greg/diskonaut"
license = "MIT"
edition = "2024"
[[bin]]
name = "diskonaut"
path = "src/main.rs"
[dependencies]
ratatui = {version="0.29", default-features = false, features = ['crossterm'] }
crossterm = "0.29"