chore: add cargo to start

This commit is contained in:
kaichaosun 2026-02-03 11:03:18 +08:00
parent 6d21499477
commit 36ef22b84d
No known key found for this signature in database
GPG Key ID: 223E0F992F4F03BF

View File

@ -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
```