embed-collections 0.8.1

A collection of memory efficient and intrusive data structures
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