ctrlc

Crates.ioctrlc
lib.rsctrlc
version3.4.4
sourcesrc
created_at2015-07-16 08:49:02.855449
updated_at2024-03-10 07:44:42.07663
descriptionEasy Ctrl-C handler for Rust projects
homepagehttps://github.com/Detegr/rust-ctrlc
repositoryhttps://github.com/Detegr/rust-ctrlc.git
max_upload_size
id2612
size49,518
Antti Keränen (Detegr)

documentation

https://detegr.github.io/doc/ctrlc

README

CtrlC

Build Status Build status

A simple easy to use wrapper around Ctrl-C signal.

Documentation

Example usage

In cargo.toml:

[dependencies]
ctrlc = "3.4"

then, in main.rs

use std::sync::mpsc::channel;
use ctrlc;

fn main() {
    let (tx, rx) = channel();
    
    ctrlc::set_handler(move || tx.send(()).expect("Could not send signal on channel."))
        .expect("Error setting Ctrl-C handler");
    
    println!("Waiting for Ctrl-C...");
    rx.recv().expect("Could not receive from channel.");
    println!("Got it! Exiting..."); 
}

Try the example yourself

cargo build --examples && target/debug/examples/readme_example

Handling SIGTERM and SIGHUP

Add CtrlC to Cargo.toml using termination feature and CtrlC will handle SIGINT, SIGTERM and SIGHUP.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Similar crates

There are alternatives that give you more control over the different signals and/or add async support.

Commit count: 199

cargo fmt