fxkit 0.1.4

Useful utilities for writting Rust CLI tools
Documentation
# Fxkit

# WARNING.
This library is still in very early stage of development, it might contains bugs and **LOTS** of bugs and the API might change very often! 

**You have been warned.**


---
A library which should make creating CLI or even GUI apps tools easier

## Build

To use ``nubuild``, the user needs to have [Nushell](https://nushell.sh) installed

### Building a release version
```bash
./nubuild build -r 

# To enable features, one just has to provide them one by one like this
./nubuikd build -r unix # for example
```

Or if one prefers to use cargo directly
```bash
cargo b --release
```

To install the C header + .so library
```bash
# Library
./nubuild install -l <path>
# Header
./nubuild install -h <path> 
```

When not using nubuild, one has to copy the files manually