forked from kmod-midori/kdeconnect-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (30 loc) · 917 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
[package]
name = "winrt-toast-reborn"
version = "0.2.1"
edition = "2021"
license = "MIT"
authors = ["Harry Cheng <[email protected]>", "Atif Chowdhury <[email protected]>"]
description = "A toast notification library for Windows 10 and 11."
keywords = ["notification", "windows", "toast", "notify"]
categories = ["os::windows-apis", "gui"]
repository = "https://github.com/AtifChy/winrt-toast.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
scopeguard = "1.2"
thiserror = "1.0"
url = "2.5"
[dependencies.windows]
version = "0.56"
features = [
"Data_Xml_Dom",
"Foundation",
"Foundation_Collections",
"Globalization",
"UI_Notifications",
"Win32_System_Registry",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_Foundation",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"