-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "lmr"
version = "0.1.0"
edition = "2021"
authors = ["Luis Fernando Batels <[email protected]>"]
description = "Lightweight email report tool"
repository = "https://github.com/fernandobatels/lmr"
keywords = ["mail", "report"]
categories = []
license = "MIT"
readme = "README.md"
[features]
postgres = ["tokio-postgres"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.19"
mail-send = "0.4.9"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
mail-builder = "0.3.2"
log = "0.4.22"
simplelog = "0.12.2"
clap = { version = "4.5.16", features = ["derive", "cargo"] }
clap-verbosity-flag = "2.2.1"
sqlite = "0.36.1"
chrono = "0.4.38"
tabled = "=0.16.0"
tokio-postgres = { version = "0.7.11", optional = true }
async-trait = "0.1.82"
postgres-types = { version = "0.2.7", features = ["with-chrono-0_4"] }
table_to_html = "0.5.0"
charts-rs = { version = "0.3.17", features = ["image-encoder"] }
base64 = "0.22.1"
rust_decimal = { version = "1.36.0", features = ["db-postgres"] }
uuid = { version = "1", features = ["v4"] }