mailpot/cli/Cargo.toml

23 lines
491 B
TOML
Raw Normal View History

2020-08-15 22:10:49 +03:00
[package]
name = "mailpot-cli"
version = "0.1.0"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2018"
license = "LICENSE"
readme = "README.md"
description = "mailing list manager"
repository = "https://github.com/meli/mailpot"
2022-09-19 15:29:41 +03:00
keywords = ["mail", "mailing-lists"]
2020-08-15 22:10:49 +03:00
categories = ["email"]
default-run = "mpot"
[[bin]]
name = "mpot"
path = "src/main.rs"
[dependencies]
2022-09-19 15:29:41 +03:00
log = "0.4"
2020-08-15 22:10:49 +03:00
mailpot = { version = "0.1.0", path = "../core" }
stderrlog = "^0.5"
2022-09-19 15:29:41 +03:00
structopt = "0.3.16"