qif_parser 0.4.0

This library parses Quicken Interchange Format (QIF) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build:
	cargo build

watch:
	cargo watch -x test

bench:
	cargo bench

compare:
	@echo "This will compare the speed of a Node.JS implementation versus this Rust implementation on the exact same file"
	@echo "Installing and compiling both versions..."
	@cd node; npm i
	@cargo build --release
	@echo "Executing both"
	@node ./node/index.js
	@./target/release/qif_parser