libchat/justfile

14 lines
276 B
Makefile
Raw Normal View History

2026-01-30 15:56:51 +08:00
# The first receipt is default with build
build:
cargo build
test:
cargo test
# Run all examples
run-examples:
cargo run --example double_ratchet_basic
cargo run --example serialization_demo
cargo run --example storage_demo
cargo run --example out_of_order_demo