rucash 0.1.6

read Gnucash sql file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: test build
build:	
	cargo build
test:
	cargo test --all-features
	cargo test --features sqlite
	cargo test --features postgres
	cargo test --features mysql
	cargo test --features xml
clean:
	cargo clean
bench:
	cargo bench --features sqlite
check:
	cargo check --features sqlite
	cargo clippy --features sqlite