sequencefile 0.2.0

Native Rust library for working with Hadoop sequence files. Only handles reading currently.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
lint:
	cargo fmt --all -- --check
	cargo clippy --all-targets --release -- -D warnings

tests:
	cargo test --tests --release -- --test-threads=1

release:
	cargo build --all-targets --release

doc:
	cargo doc

clean:
	cargo clean

all: clean lint tests doc release