evering 0.1.0

Typed shared-memory communication across processes
1
2
3
4
5
6
7
8
use evering::PBox;

fn accepts_heap_box(_: PBox<'_, u64>) {}

#[test]
fn shared_box_has_only_mapping_lifetime_and_value_in_its_type() {
    let _ = accepts_heap_box;
}