bugreport

Continuous integration

bugreport is a Rust library that helps application developers to automatically collect information about the system and the environment that users can send along with a bug report (similar to git bugreport or ffmpeg … -report).

Note: This library is in an early stage and the API is very likely to change.

Example

```rust use bugreport::{bugreport, collectors::*};

fn main() { bugreport!() .info(OperatingSystem::default()) .info(SoftwareVersion::default()) .info(CommandLine::default()) .info(EnvironmentVariables::list(&["SHELL", "PATH"])) .print_markdown(); } ```

Features

Collectors

Use cases / prior art