sfrx

Crates.iosfrx
lib.rssfrx
version0.1.3
sourcesrc
created_at2023-04-07 15:45:54.189704
updated_at2023-04-08 18:51:05.322281
descriptionRust lib to wrap sfdx-cli commands
homepage
repositoryhttps://github.com/michael-ploetz/sfrx
max_upload_size
id832985
size15,346
Michael Joshua Plötz (michael-ploetz)

documentation

README

SalesForce Developer Rust Experience


This library tries to wrap sfdx/sf cli commands into rust functions.

How to Use it

use sfrx::orgs::*;

fn main() {
    match orgs::org_list() {
        Ok(org_list_output) => {
            for scratch_org in org_list_output.result.scratch_orgs {
                print!("{}", scratch_org.org_name);
            }
        }
        Err(err) => eprintln!("Error: {}", err),
    }
}

WIP

This project is still in development until i find the time to port more commands and am satisfied with the state of documentation

Commit count: 8

cargo fmt