1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
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