pifu 0.3.5

Cross platform package build tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

# How to cross compile
[cross](https://github.com/rust-embedded/cross) is a great tool to do this job.

On Debian based system, follow these steps:
1. Install docker and podman: `sudo apt install docker podman`
2. Add current user to docker group: `sudo addgroup ${USER} docker; newgrp docker`
3. Install cross: `cargo install cross`

Now, compile examples with cross:
```bash
$ cross build --example hello --target x86_64-pc-windows-gnu
```