shopping-parser 0.1.1

A Rust-based parser for parsing structured product information and shopping lists, supporting multiple currencies and units.
Documentation
BINARY = shopping-parser


.PHONY: all build run test format clippy clean


build:
	cargo build


run:
	cargo run -- --help


test:
	cargo test


format:
	cargo fmt


clippy:
	cargo clippy


precommit: format clippy test


clean:
	cargo clean