Bump version to 0.0.0+2023-04-21

grcov
Manos Pitsidianakis 2023-04-21 18:42:14 +03:00
parent 876e32bb76
commit 503e214801
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
8 changed files with 36 additions and 20 deletions

10
Cargo.lock generated
View File

@ -1564,7 +1564,7 @@ dependencies = [
[[package]]
name = "mailpot"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
dependencies = [
"anyhow",
"chrono",
@ -1585,7 +1585,7 @@ dependencies = [
[[package]]
name = "mailpot-cli"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
dependencies = [
"assert_cmd",
"clap",
@ -1599,7 +1599,7 @@ dependencies = [
[[package]]
name = "mailpot-http"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
dependencies = [
"mailpot",
"tokio",
@ -1608,7 +1608,7 @@ dependencies = [
[[package]]
name = "mailpot-web"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
dependencies = [
"axum",
"axum-extra",
@ -1777,7 +1777,7 @@ dependencies = [
[[package]]
name = "mpot-archives"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
dependencies = [
"chrono",
"lazy_static",

View File

@ -1,24 +1,40 @@
# mailpot - WIP mailing list manager
# mailpot - mailing list manager
Rendered rustdoc of `core` crate: <https://meli.github.io/mailpot/docs/mailpot/>
[![Latest Version]][crates.io]&nbsp;[![docs.rs]][rustdoc]&nbsp;![Top Language]&nbsp;![License]
CLI manpage: [`mpot.1`](./docs/mpot.1) [Rendered](https://git.meli.delivery/meli/mailpot/src/branch/main/docs/mpot.1)
[Latest Version]: https://img.shields.io/crates/v/mailpot.svg?color=white
[crates.io]: https://crates.io/crates/mailpot
[Top Language]: https://img.shields.io/github/languages/top/meli/mailpot?color=white&logo=rust&logoColor=black
[License]: https://img.shields.io/github/license/meli/mailpot?color=white
[docs.rs]: https://img.shields.io/docsrs/mailpot?color=white
[rustdoc]: https://meli.github.io/mailpot/docs/mailpot/
Crates:
- Official hosted instance of `mailpot-web` crate: <https://lists.meli.delivery/>
- Rendered rustdoc: <https://meli.github.io/mailpot/docs/mailpot/>
- CLI manpage: [`mpot.1`](./docs/mpot.1) [Rendered](https://git.meli.delivery/meli/mailpot/src/branch/main/docs/mpot.1)
| Interested in contributing? Consult [`CONTRIBUTING.md`](./CONTRIBUTING.md). |
| --- |
## crates:
- `core` the library
- `cli` a command line tool to manage lists
- `web` an `axum` based web server capable of serving archives and authenticating list owners and members
- `archive-http` static web archive generation or with a dynamic http server
- `rest-http` a REST http server to manage lists
## Project goals
## Features
- easy setup
- extensible through Rust API as a library
- extensible through Rust API as a [library](./core)
- basic management through [CLI tool](./cli/)
- optional lightweight web archiver ([static](./archive-http/) and [dynamic](./web/))
- useful for both **newsletters**, **communities** and for static **article comments**
## Roadmap
- extensible through HTTP REST API as an HTTP server, with webhooks
- basic management through CLI
- optional lightweight web archiver
- useful for both newsletters, discussions, article comments
## Initial setup

View File

@ -1,6 +1,6 @@
[package]
name = "mpot-archives"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2021"
license = "LICENSE"

View File

@ -1,6 +1,6 @@
[package]
name = "mailpot-cli"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2021"
license = "LICENSE"

View File

@ -1,6 +1,6 @@
[package]
name = "mailpot"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2021"
license = "LICENSE"

View File

@ -1,6 +1,6 @@
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.TH mpot 1 "mpot 0.0.0+2023-04-07"
.TH mpot 1 "mpot 0.0.0+2023-04-21"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.SH NAME

View File

@ -1,6 +1,6 @@
[package]
name = "mailpot-http"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2021"
license = "LICENSE"

View File

@ -1,6 +1,6 @@
[package]
name = "mailpot-web"
version = "0.0.0+2023-04-07"
version = "0.0.0+2023-04-21"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2021"
license = "LICENSE"