[package] name = "alfred-kill-process" version = "0.1.0" edition = "2021" # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown). description = "Workflow for killing processes from Alfred." # These URLs point to more information about the repository. These are # intended to be webviews of the relevant data, not necessarily compatible # with VCS tools and the like. documentation = "https://docs.rs/alfred-kill-process" homepage = "https://github.com/omerdn1/alfred-kill-process" repository = "https://github.com/omerdn1/alfred-kill-process" # This points to a file in the repository (relative to this `Cargo.toml`). The # contents of this file are stored and indexed in the registry. readme = "README.md" # This is a list of up to five keywords that describe this crate. Keywords # are searchable on crates.io, and you may choose any words that would # help someone find this crate. keywords = ["kill", "process", "alfred", "mac"] # This is a string description of the license for this package. Currently # crates.io will validate the license provided against a whitelist of known # license identifiers from http://spdx.org/licenses/. Multiple licenses can be # separated with a `/`. license = "MIT" # include = ["src/main.rs", "Cargo.toml", "info.plist", "info.png"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] alfred = "4.0.2" clap = "3.2.17" sysinfo = "0.25.2"