liminal-server 0.4.1

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

fn clone_proof(proof: FencedAttachCommit) {
    let cloned = proof.clone();
    drop(cloned);
}

fn main() {
    let _ = clone_proof;
}