io-buffer 1.0.7

A buffer abstracted for disk and network IO, with static lifetime. Unify Vec and *libc::c_void into one type, with smallest mem footprint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

make fmt || exit 1

# re add the files since changed by fmt
files=$(git diff --cached --name-only --diff-filter=ACM | grep '.rs$')
for f in $files; do
	echo "git add $f"
	git add $f
done
exit 0