forked from allenbenz/winrt-notification
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
36 lines (32 loc) · 880 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
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "tauri-winrt-notification"
version = "0.7.1"
authors = [
"allenbenz",
"Tauri Programme within The Commons Conservancy"
]
keywords = [ "notification", "windows", "toast", "notify" ]
readme = "README.md"
description = "An incomplete wrapper over the WinRT toast api"
documentation = "https://docs.rs/tauri-winrt-notification/"
repository = "https://github.com/tauri-apps/winrt-notification"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.74"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[dependencies]
quick-xml = "0.37"
thiserror = "2"
windows-version = "0.1"
[dependencies.windows]
version = "0.60"
features = [
"Win32_Foundation",
"Foundation_Collections",
"Win32_System_SystemInformation",
"Data_Xml_Dom",
"UI_Notifications"
]
[target.'cfg(windows)'.dev-dependencies]
windows-registry = "0.5.0"