-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (23 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
30 lines (23 loc) · 827 Bytes
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
26
27
28
29
30
[package]
name = "mac-notification-sys"
version = "0.6.12"
authors = ["Felix Döring <development@felixdoering.com>", "Hendrik Sollich <hendrik@hoodie.de>"]
description = "Thin wrapper around macOS Notifications."
edition = "2024"
rust-version = "1.85"
homepage = "https://github.com/h4llow3En/mac-notification-sys"
repository = "https://github.com/h4llow3En/mac-notification-sys"
documentation = "https://docs.rs/mac-notification-sys/latest/mac_notification_sys/"
license = "MIT/Apache-2.0"
keywords = ["notification", "masOS", "osx", "notify"]
readme = "README.md"
include = ["Cargo.toml", "build.rs", "objc/*", "src/*.rs", "tests/*.rs"]
build = "build.rs"
[package.metadata.docs.rs]
targets = ["aarch64-apple-darwin"]
[dependencies]
objc2-foundation = "0.3"
objc2 = "0.6"
time = "0.3"
[build-dependencies]
cc = "1.2"