rnotify 0.1.1

Rnotify allows sending informative messages to various destinations such as Discord, Telegram and Mail through the command line.
Documentation
[[bin]]
name = "rnotify"
path = "src/main.rs"
required-features = ["binary"]
[dependencies.chrono]
version = "0.4.19"

[dependencies.clap]
features = ["derive"]
optional = true
version = "3.2.16"

[dependencies.discord-webhook]
default-features = false
features = ["models"]
optional = true
version = "0.1.0"

[dependencies.hostname]
version = "0.3.1"

[dependencies.lettre]
default-features = false
features = ["serde", "rustls-tls", "builder", "smtp-transport"]
optional = true
version = "0.10.1"

[dependencies.minreq]
default-features = false
features = ["https-rustls", "json-using-serde"]
optional = true
version = "2.6.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.142"

[dependencies.serde_json]
version = "1.0.83"

[dependencies.toml]
version = "0.5.9"

[features]
binary = ["dep:clap"]
default = ["discord", "telegram"]
discord = ["dep:discord-webhook", "http"]
http = ["dep:minreq"]
mail = ["dep:lettre"]
telegram = ["http"]

[lib]
name = "rnotifylib"
path = "src/lib.rs"

[package]
authors = ["James Hendry <jameshendry05+rnotify@gmail.com>"]
categories = ["command-line-utilities"]
description = "Rnotify allows sending informative messages to various destinations such as Discord, Telegram and Mail through the command line."
edition = "2021"
keywords = ["notification"]
license = "MIT"
name = "rnotify"
readme = "README.md"
repository = "https://github.com/tyhdefu/rnotify"
resolver = "2"
version = "0.1.1"
[profile.release]
lto = true
opt-level = "z"