[package] name = "caffeinate2" version = "0.5.1" edition = "2021" authors = ["Randomblock1 "] description = "Caffeinate MacOS utility with more options. Temporarily prevent your system from sleeping." license = "MIT" repository = "https://github.com/randomblock1/caffeinate2" readme = "README.md" homepage = "https://randomblock1.com" keywords = ["macos", "utility", "caffeinate"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.4.7", features = ["derive", "wrap_help"] } core-foundation = "0.9.3" libloading = "0.8.1" nix = { version = "0.27.1", features = ["user"] } regex = { version = "1.10.2", default-features = false, features = ["std", "unicode-perl"] } signal-hook = "0.3.17" time = { version = "0.3.30", features = ["macros", "formatting", "local-offset"] } [[bin]] name = "caffeinate2" path = "src/main.rs" [[bin]] name = "sleepdetect" path = "src/sleepdetect.rs"