[package]
edition = "2024"
rust-version = "1.87"
name = "vaken"
version = "0.1.0"
authors = ["Gnomes"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tiny macOS menu bar utility to keep your Mac awake — Rust wrapper around `caffeinate`."
homepage = "https://github.com/GnomesOfZurich/vaken"
documentation = "https://github.com/GnomesOfZurich/vaken#readme"
readme = "README.md"
keywords = [
"macos",
"menubar",
"caffeinate",
"sleep",
"rust",
]
categories = [
"command-line-utilities",
"gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/GnomesOfZurich/vaken"
[package.metadata.bundle]
name = "Vaken"
identifier = "com.gnomes.vaken"
category = "Utility"
short_description = "Tiny macOS menu bar utility for temporarily keeping your Mac awake."
long_description = """
Vaken sits in the menu bar with a single toggle that runs `caffeinate -dimsu`
to keep the Mac awake (display, idle, disk, system, user), then kills it
when you toggle off or quit. No Electron, no webview, no telemetry.
"""
icon = [
"icons/icon-16.png",
"icons/icon-32.png",
"icons/icon-128.png",
"icons/icon-256.png",
]
osx_info_plist_exts = ["Info.plist"]
[[bin]]
name = "vaken"
path = "src/main.rs"
[dependencies.image]
version = "0.25.10"
[dependencies.muda]
version = "0.19.2"
[dependencies.tray-icon]
version = "0.24.0"
[dependencies.winit]
version = "0.30.13"