ctrlc 3.4.5

Easy Ctrl-C handler for Rust projects
Documentation
[badges.maintenance]
status = "passively-maintained"

[dev-dependencies.signal-hook]
version = "0.3"

[features]
termination = []

[package]
authors = ["Antti Keränen <detegr@gmail.com>"]
categories = ["os"]
description = "Easy Ctrl-C handler for Rust projects"
documentation = "https://detegr.github.io/doc/ctrlc"
edition = "2021"
exclude = ["/.travis.yml", "/appveyor.yml"]
homepage = "https://github.com/Detegr/rust-ctrlc"
keywords = ["ctrlc", "signal", "SIGINT"]
license = "MIT/Apache-2.0"
name = "ctrlc"
readme = "README.md"
repository = "https://github.com/Detegr/rust-ctrlc.git"
rust-version = "1.69.0"
version = "3.4.5"

[target."cfg(unix)".dependencies.nix]
default-features = false
features = ["fs", "signal"]
version = "0.29"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_System_Threading", "Win32_Security", "Win32_System_Console"]
version = "0.59"

[target."cfg(windows)".dev-dependencies.windows-sys]
features = ["Win32_Storage_FileSystem", "Win32_Foundation", "Win32_System_IO", "Win32_System_Console"]
version = "0.59"

[[test]]
harness = false
name = "main"
path = "tests/main/mod.rs"

[[test]]
harness = false
name = "issue_97"
path = "tests/main/issue_97.rs"