callee 0.1.2

A library to show information about the calling process.
Documentation
# callee

[![Built with Nix](https://img.shields.io/static/v1?label=built%20with&message=nix&color=5277C3&logo=nixos&style=flat-square&logoColor=ffffff)](https://builtwithnix.org)
[![Crates](https://img.shields.io/crates/v/callee?style=flat-square)](https://crates.io/crates/callee)
[![Documentation](https://img.shields.io/badge/callee-documentation-fc0060?style=flat-square)](https://docs.rs/callee)

Library that returns information about it's parent process.


# Usage:

```
callee = "0.1.0"
```

or use `cargo add`:

```
cargo add callee
```

# Example:
```
    use callee::Callee;
    let callee = Callee::init().unwrap();
    println!("Comm: {}", callee.comm());
    println!("Info: {}", callee.info());
```


# Limitations

The library currently fits my needs, but is still limited, notably:

- It is only tested on Linux, I naively believe that it won't work on Darwin, or Windows systems.

If people are interested in adding a cross platform solution, please reach out.

If you have different needs, or find improvements, 
I am always happy about contributions.
Please see the contributing section for that.

# Changes
[Changelog](./CHANGELOG.md)


# Contributing
[How to contribute.](./docs/CONTRIBUTING.md)

# License
MIT