SalesForce ~~Developer~~ Rust Experience


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

How to Use it

```rust use sfrx::orgs::*;

fn main() { match orgs::orglist() { Ok(orglistoutput) => { for scratchorg in orglistoutput.result.scratchorgs { print!("{}", scratchorg.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