mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-10 17:03:12 +00:00
42 lines
467 B
Markdown
42 lines
467 B
Markdown
# libchat
|
|
|
|
Supporting library for Logos-chat.
|
|
|
|
## Quick Start
|
|
|
|
### 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:
|
|
|
|
```bash
|
|
brew install just
|
|
```
|
|
|
|
After that, run:
|
|
|
|
```bash
|
|
# Build
|
|
just build
|
|
|
|
# Run tests
|
|
just test
|
|
|
|
# Run all examples
|
|
just run-examples
|
|
```
|