Files
msme/Cargo.toml
Nick Thomas 3d303aebf6 Use the PDF's existence to avoid sending duplicate emails
If the PDF is already on disk, it's a good sign that we've already sent
the email, so skip in that case.

To make the signal a bit more reliable, make writing the PDF to disk
the last action taken, in case sending the email fails.
2023-04-03 12:40:08 +01:00

21 lines
371 B
TOML

[package]
name = "msme"
version = "0.1.0"
edition = "2021"
license = "CSL"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cookie_store = "*"
mail-builder = "*"
subprocess = "*"
ureq = { version = "*", features = ["cookies"] }
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
strip = true