Skip to content

mibmo/mortem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mortem

Crates.io docs.rs

Easy self-deleting executables.

Usage

Simply register a guard (either soft or hard) in the program entrypoint, and have it be dropped to delete the binary.

fn main() {
    let _mortem = mortem::hard(); // register mortem guard

    // some code
    println!("Hello!")

    // _mortem drops and executable is deleted
}

What's with soft and hard?

The soft handler exits on IO errors and only tries to delete the executable once; the hard handler keeps trying till the executable is successfully deleted.

This is explained in further details in the documentation.

Tracing

Tracing is disabled by default, but can be enabled with the tracing feature.

Examples

See the examples directory or documentation.

About

Easy self-deleting executables

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages