email_provider_validator 0.1.0

A Rust library to validate email provider
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
check:
	@cargo +nightly fmt
	@cargo clippy --fix --allow-dirty --allow-staged --all-targets -- -D warnings -A clippy::extra_unused_lifetimes
	@cargo update --dry-run
	@cargo +nightly udeps --all-targets
	@cargo machete
	@cargo outdated -wR

check_nightly:
	@cargo +nightly clippy --fix --allow-dirty --allow-staged  --all-features --all-targets

check_strictly:
	@cargo +nightly clippy --fix --allow-dirty --allow-staged --all-features --all-targets -- -W clippy::all -W clippy::pedantic -W clippy::cargo

test:
	@cargo test --features free,disposable