This library tries to wrap sfdx/sf cli commands into rust functions.
```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), } } ```
This project is still in development until i find the time to port more commands and am satisfied with the state of documentation