sendemail/Cargo.toml

19 lines
621 B
TOML

[package]
name = "sendemail"
version = "0.1.0"
authors = [
"Dustin C. Hatch <dustin@hatch.name>",
]
description = "Send e-mail messages from the command line"
license = "MIT OR Apache-2.0"
edition = "2021"
[dependencies]
argh = "0.1.12"
lettre = { version = "0.11.2", default-features = false, features = ["builder", "native-tls", "smtp-transport", "tracing"] }
mime_guess2 = { version = "2.0.5", default-features = false }
serde_json = "1.0.108"
tera = { version = "1.19.1", default-features = false, features = ["chrono", "builtins"] }
thiserror = "1.0.51"
whoami = { version = "1.4.1", default-features = false }