From d9738b4be2add82ff955f061c79316b0dc91768f Mon Sep 17 00:00:00 2001 From: Elvis Claros Castro Date: Sat, 26 Sep 2026 18:47:40 -0300 Subject: posta: generic IMAP/SMTP mail CLI with JSON output --- Cargo.toml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f557165 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,29 @@ +[package] +name = "posta" +version = "0.1.0" +edition = "2021" +description = "A tiny, generic IMAP/SMTP mail CLI — manage any mailbox from your terminal" +license = "MIT" +readme = "README.md" +keywords = ["imap", "smtp", "email", "cli", "mail"] +categories = ["command-line-utilities", "email"] + +[dependencies] +anyhow = "1" +clap = { version = "4", features = ["derive"] } +imap = "2.4" +lettre = "0.11" +mailparse = "0.16" +native-tls = "0.2" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +toml = "0.8" + +[dev-dependencies] +assert_cmd = "2" +predicates = "3" +tempfile = "3" + +[profile.release] +strip = true +lto = true -- cgit v1.2.3