books_description_parser 0.1.0

A Rust-based parser to extract book details from structured markdown-like text and output them in formats like JSON or Rust structs for further processing.
Documentation
run:
	cargo run parse src/input.txt


fmt:
	cargo fmt


clippy:
	cargo clippy


test:
	cargo test


build:
	cargo build


credits:
	cargo run credits


help:
	cargo run help


all: fmt clippy test build