Initial commit

This commit is contained in:
Rémi BERTHO 2023-06-27 23:15:03 +02:00
commit 22ecf89c69
Signed by: dalan
GPG key ID: EE3B917931C07B64
8 changed files with 1753 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "notipriv"
version = "1.0.0"
edition = "2021"
build = "build.rs"
authors = ["Rémi BERTHO <remi.bertho@dalan.fr>"]
description = "UnifiedPush message sender"
readme = "README.md"
license = "MIT"
homepage = "https://dalan.fr"
repository = "https://git.berthor.eu/dalan/notipriv"
keywords = ["UnifiedPush", "notification"]
[dependencies]
anyhow = "1"
clap = {version ="4", features=["derive"]}
human-panic = "1"
shadow-rs = "0.23"
confy = "0.5"
serde = {version ="1", features = ["derive"]}
reqwest = { version = "0.11", default_features = false, features = ["blocking", "rustls-tls"] }
url = {version ="2", features=["serde"]}
opener = "0.6"
[build-dependencies]
shadow-rs = "0.23"