plain 0.0.2

A small Rust library that allows users to reinterpret data of certain types safely.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
cargo test 
mkdir -p /tmp/debug/test

cp target/debug/deps/plain-* /tmp/debug/test

for x in /tmp/debug/test/plain*; do
	echo $x
	chmod +x $x
	$x --nocapture
	rm $x
done