eml2md 0.1.0

Convert EML files to Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: lint clippy build all

all: lint clippy build

lint:
	cargo fmt --all --check

clippy:
	cargo clippy --all-targets --all-features -- -D warnings

build:
	cargo build