Update manifest

This commit is contained in:
Kevin Liu 2016-09-19 21:52:56 -07:00
parent b41ec8b7a6
commit 9f1836fcbd
2 changed files with 11 additions and 6 deletions

View file

@ -1,11 +1,18 @@
[project]
name = "rip" # rm improved
[package]
name = "rm-improved"
version = "0.5.0"
authors = ["mail@nivekuil.com"]
description = "A safety-focused alternative to rm."
repository = "https://github.com/nivekuil/rip"
license = "GPL-3.0+"
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
clap = "2"
walkdir = "0.1"
[profile.release]
lto = true
lto = true

View file

@ -1,6 +1,4 @@
* rip (Rm ImProved)
A safety-focused alternative to =rm=.
Deleted files get sent to the graveyard (=/tmp/.graveyard= by default) under their absolute path) instead of being unlinked, giving you a chance to recover them.
No data is overwritten. If files that share the same path are deleted, they will be renamed as numbered backups.
@ -8,7 +6,7 @@ No data is overwritten. If files that share the same path are deleted, they wil
If you want to put the graveyard somewhere else (like =~/.local/share/Trash=), you could alias =rip= to =rip --graveyard ~/.local/share/Trash=. This can be a good idea because if the graveyard is in a tmpfs mount, deleting large files can quickly fill up your RAM. It's also slower than moving files within the same filesystem.
** Installation
Get a binary [[https://github.com/nivekuil/rip/releases][release]] (x86_64) or clone the repository and run =cargo build=.
Get a binary [[https://github.com/nivekuil/rip/releases][release]] (x86_64) or =cargo install rm-improved=.
** Usage
#+BEGIN_EXAMPLE