finga
7ad6f610d1
In order to keep the configuration globally available use `once_cell`. Also check for a valid email address in the part which is receiving the data from the api.
28 lines
835 B
TOML
28 lines
835 B
TOML
[package]
|
|
name = "remindrs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Organize..."
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://git.onders.org/finga/remindrs"
|
|
readme = "../README.md"
|
|
keywords = ["remind"]
|
|
categories = ["utility"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
time = { version = "0.3", features = ["serde-human-readable"] }
|
|
lettre = { version = "0.10", features = ["serde", "tracing"] }
|
|
diesel = { version = "2", features = ["postgres", "r2d2", "time"] }
|
|
diesel_migrations = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.6"
|
|
clap = { version = "4", features = ["derive"] }
|
|
xdg = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.6"
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tower-http = { version = "0.3", features = ["trace"] }
|
|
once_cell = "1"
|