-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 781 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
31
32
33
34
35
[package]
name = "notify-send-rs"
version = "0.0.1"
authors = ["VHSgunzo <vhsgunzo.github.io>"]
description = "Rust version of notify-send for display notifications on the linux desktop using https://docs.rs/notify-rust"
keywords = ["desktop", "notification", "notify", "dbus", "libnotify", "notify-send"]
license = "MIT"
readme = "README.md"
edition = "2021"
[dependencies.notify-rust]
version = "4.5"
default-features = false
[features]
default = ["z"]
d = ["notify-rust/d"]
z = ["notify-rust/z"]
images = ["notify-rust/images"]
[profile.release]
lto = true
panic = "abort"
opt-level = "z"
strip = "symbols"
debug = false
codegen-units = 1
[dependencies.clap]
version = "3.0.0"
features = [ "derive", "cargo" ]
[dependencies.dbus]
version = "0.9.7"
features = ["vendored"]