iCalendar_parser 0.1.10

iCalendar (.ical) file parsing and putting into handy structure
Documentation
all: format lint build test run_example

build:
	cargo b

test:
	cargo test

clean:
	cargo clean

run_example:
	cargo r --  --file tests/iCals/1.ical
format:
	cargo fmt

lint:
	cargo clippy

.PHONY: format, lint, build, clean, run_example, all