From 36ef22b84d418249dafa1148ef75b482b9677c36 Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Tue, 3 Feb 2026 11:03:18 +0800 Subject: [PATCH] chore: add cargo to start --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e4ff3f..6458683 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,22 @@ Supporting library for Logos-chat. ## Quick Start -Install [just](https://github.com/casey/just) to manage tasks. +### Using Cargo + +```bash +# Build +cargo build + +# Run tests +cargo test + +# Run examples +cargo run --example double_ratchet_basic +``` + +### Using Just + +Install [just](https://github.com/casey/just) to manage complex tasks. On MacOS, you can install it via Homebrew: @@ -24,4 +39,3 @@ just test # Run all examples just run-examples ``` -