FAA-based wait-free bounded queue, and 0-unsafe.
```rust use wfqueue::WfQueue;
let queue = WfQueue::new(3);
queue.push(Box::new(0x42)).unwrap(); let output = queue.pop().unwrap();
assert_eq!(*output, 0x42); ```