<div align=right>Table of Contents↗️</div>
<h1 align=center><code>envs</code></h1>
<p align=center>📦 A Rust library for detecting various system environments, including virtualization, containers, OS types, and more.</p>
<div align=center>
<a href="https://crates.io/crates/envs">
<img src="https://img.shields.io/crates/v/envs.svg" alt="crates.io version">
</a>
<a href="https://crates.io/crates/envs">
<img src="https://img.shields.io/github/repo-size/lvillis/envs?style=flat-square&color=328657" alt="crates.io version">
</a>
<a href="https://github.com/lvillis/envs/actions">
<img src="https://github.com/lvillis/envs/actions/workflows/ci.yaml/badge.svg" alt="build status">
</a>
<a href="mailto:lvillis@outlook.com?subject=Thanks%20for%20envs!">
<img src="https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg" alt="say thanks">
</a>
</div>
---
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
envs = "0.2.2"
```
```rust
use envs::get_environment_info;
fn main() {
let info = get_environment_info();
println!("{:?}", info);
}
```