forked from amachang/system_status_bar_macos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (20 loc) · 845 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "system_status_bar_macos"
version = "0.1.3"
edition = "2021"
description = "Library for interacting with the system's status bar for macOS, or more simply, the one for using [NSStatusBar systemStatusBar]."
license = "MIT OR Apache-2.0"
repository = "https://github.com/amachang/system_status_bar_macos"
keywords = ["macos", "sysbar", "systray", "NSStatusBar"]
categories = ["os::macos-apis"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[target.'cfg(target_os = "macos")'.dependencies]
block2 = "0.2.0"
icrate = { version = "0.0.3", features = ["apple", "Foundation_all", "AppKit_all"] }
objc2 = "0.4.0"
[dev-dependencies]
sysinfo = "0.29.5"
tokio = { version = "1", features = ["full"] }
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"