liminal-server 0.4.1

Standalone server for the liminal messaging bus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use liminal_protocol::lifecycle::AttachCommit;

fn split_twice(commit: AttachCommit<Vec<u8>, Vec<u8>>) {
    let first = commit.into_slot_and_fate();
    drop(first);
    let second = commit.into_slot_and_fate();
    drop(second);
}

fn main() {
    let _ = split_twice;
}