edited metadata

This commit is contained in:
Candifloss 2024-11-18 15:48:35 +05:30
parent f25f2ce2ca
commit 08ac40ae85
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,12 @@ name = "snot"
version = "0.1.3" version = "0.1.3"
edition = "2021" edition = "2021"
authors = ["candifloss <candifloss.cc>"] authors = ["candifloss <candifloss.cc>"]
description = "Simple NOTification"
license = "GPL-3.0-or-later"
repository = "https://git.candifloss.cc/candifloss/SNot"
homepage = "https://git.candifloss.cc/candifloss/SNot"
documentation = "https://git.candifloss.cc/candifloss/SNot"
readme = "README.md"
[dependencies] [dependencies]
zbus = "4.4.0" zbus = "4.4.0"

View File

@ -13,7 +13,7 @@ use futures_util::stream::TryStreamExt;
use zbus::{message::Body, Connection, Result}; use zbus::{message::Body, Connection, Result};
const SERVER_NAME: &str = "SNot"; // Server software name const SERVER_NAME: &str = "SNot"; // Server software name
const VENDOR: &str = "candifloss.cc"; // Server software vendor const VENDOR: &str = env!("CARGO_PKG_AUTHORS"); // Server software vendor
const VERSION: &str = env!("CARGO_PKG_VERSION"); // Server software version, from Cargo.toml const VERSION: &str = env!("CARGO_PKG_VERSION"); // Server software version, from Cargo.toml
const SPEC_VERSION: &str = "0.42"; // DBus specification version const SPEC_VERSION: &str = "0.42"; // DBus specification version
const NOTIF_INTERFACE: &str = "org.freedesktop.Notifications"; // DBus interface name const NOTIF_INTERFACE: &str = "org.freedesktop.Notifications"; // DBus interface name