Rust wrapper around the Go sbotcli Scuttlebutt tool.
Go to file
notplants 5fa1955b99 Working on about messages 2021-11-16 16:15:50 +01:00
src Working on about messages 2021-11-16 16:15:50 +01:00
.gitignore docs, errors and basic api 2021-11-03 15:52:35 +02:00
Cargo.toml Parse json into SsbMessageValue 2021-11-16 15:41:20 +01:00
README.md rename crate and change license 2021-11-05 13:46:35 +02:00

README.md

go-sbotcli-rs

Rust wrapper around the Go sbotcli ScuttleButt tool (cryptoscope/ssb), allowing interaction with a gosbot instance.

Example

use go_sbotcli_rs::{Sbot, SbotCliError};

fn example() -> Result<(), SbotCliError> {
    // uses default paths for `sbotcli` and `go-sbot` working directory
    let sbot = Sbot::init(None, None)?;

    let id = "@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519";

    let follow_ref = sbot.follow(id)?;
    let block_ref = sbot.block(id)?;

    let invite_code = sbot.create_invite()?;

    Ok(())
}

Documentation

Use cargo doc to generate and serve the Rust documentation for this library:

git clone https://git.coopcloud.tech/PeachCloud/go-sbotcli-rs.git
cd peach-sbotcli
cargo doc --no-deps --open

License

LGPL-3.0