From a607d16ebee4337db6670671e89cf24d975c80e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Sat, 29 Jul 2023 14:13:42 +0200 Subject: [PATCH] fix: changed bin name via cargo.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 10dea67c..22f0b192 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,20 +1,20 @@ [package] -name = "exa" +name = "eza" description = "A modern replacement for ls" -authors = ["Benjamin Sago "] +authors = ["Benjamin Sago ", "Christina Sørensen "] categories = ["command-line-utilities"] edition = "2021" rust-version = "1.63.0" exclude = ["/devtools/*", "/Justfile", "/Vagrantfile", "/screenshots.png"] readme = "README.md" -homepage = "https://the.exa.website/" +homepage = "https://github.com/cafkafk/eza" license = "MIT" -repository = "https://github.com/ogham/exa" +repository = "https://github.com/cafkafk/ez" version = "0.10.1" [[bin]] -name = "exa" +name = "eza" [dependencies] @@ -69,15 +69,15 @@ lto = true license-file = [ "LICENCE", "4" ] depends = "$auto" extended-description = """ -exa is a replacement for ls written in Rust. +eza is a replacement for ls written in Rust. """ section = "utils" priority = "optional" assets = [ - [ "target/release/exa", "/usr/bin/exa", "0755" ], - [ "target/release/../man/exa.1", "/usr/share/man/man1/exa.1", "0644" ], - [ "target/release/../man/exa_colors.5", "/usr/share/man/man5/exa_colors.5", "0644" ], - [ "completions/bash/exa", "/usr/share/bash-completion/completions/exa", "0644" ], - [ "completions/zsh/_exa", "/usr/share/zsh/site-functions/_exa", "0644" ], - [ "completions/fish/exa.fish", "/usr/share/fish/vendor_completions.d/exa.fish", "0644" ], + [ "target/release/eza", "/usr/bin/eza", "0755" ], + [ "target/release/../man/eza.1", "/usr/share/man/man1/eza.1", "0644" ], + [ "target/release/../man/eza_colors.5", "/usr/share/man/man5/eza_colors.5", "0644" ], + [ "completions/bash/eza", "/usr/share/bash-completion/completions/eza", "0644" ], + [ "completions/zsh/_eza", "/usr/share/zsh/site-functions/_eza", "0644" ], + [ "completions/fish/eza.fish", "/usr/share/fish/vendor_completions.d/eza.fish", "0644" ], ]