sieve-parser 0.1.2

Parsing the Sieve language and exporting an abstract representation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PHONY := generate-% build

SHELL := /bin/bash

generate-env-from-env-sample:
	@${SHELL} -c ". .make-helpers; generate_env_from_env_sample .devcontainer"

build:
	cargo build --release --all-features

test:
	cargo test --release --all-features

.PHONY: $(PHONY)