fpick 0.7.3

Interactive file picker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
run:
	RUST_BACKTRACE=1 cargo run

# generate a new release at ./target/release/fpick
build:
	cargo build --release

install:
	cargo install --path .

doc:
	cargo doc

test:
	cargo test

publish:
	cargo publish