1
Fork 0
generated from lucas/rust-template
Code Issues 1 Pull requests 9 Activity
Var Dump:
dumpVar: only available in dev mode
Mailing List
ntfy-collector/Cargo.toml
Lucas Schwiderski f5c64b788f
Use Rustls for TLS
Slim Docker images like Alpine or Distroless don't ship OpenSSL by
default, and rather than installing that, Rustls can be linked
statically.
2024-09-20 10:28:08 +02:00

19 lines
690 B
TOML

[package]
name = "ntfy-collector"
description = "A daemon to collect notifications from various places and forward them to Ntfy"
version = "0.1.0"
edition = "2021"
license = "EUPL-1.2"
[dependencies]
axum = "0.7.5"
color-eyre = "0.6.3"
mlua = { version = "0.9.9", features = ["luajit", "macros", "serialize", "vendored"] }
reqwest = { version = "0.12.7", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.128"
serde_repr = "0.1.19"
tokio = { version = "1.40.0", features = ["rt", "sync"] }
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }