This is a libray that makes a boolean that "takes" up 1 bit instead of 1 byte.
``` use bit_bool::OneBitBool;
let b = OneBitBool::from(true);
asserteq!(b.getindex(0), true); ```