Crates.io | ctrlc |
lib.rs | ctrlc |
version | 3.4.5 |
source | src |
created_at | 2015-07-16 08:49:02.855449 |
updated_at | 2024-08-13 15:54:19.027501 |
description | Easy Ctrl-C handler for Rust projects |
homepage | https://github.com/Detegr/rust-ctrlc |
repository | https://github.com/Detegr/rust-ctrlc.git |
max_upload_size | |
id | 2612 |
size | 49,347 |
A simple easy to use wrapper around Ctrl-C signal.
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...");
}
cargo build --examples && target/debug/examples/readme_example
Add CtrlC to Cargo.toml using termination
feature and CtrlC will handle SIGINT, SIGTERM and SIGHUP.
Licensed under either of
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.
There are alternatives that give you more control over the different signals and/or add async support.