rucash 0.1.7

read Gnucash sql file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 --all-features
	cargo clippy --all-features
publish:
	cargo publish --all-features