Easy to use daemonizing for rust programs in unix enviroment.
Add to `Cargo.toml`:
```toml
[dependencies]
unix-daemonize = "0.1"
```
To `src/main.rs`:
```rust
extern crate unix_daemonize;
use unix_daemonize::{daemonize_redirect, ChdirMode};
fn main() {
}
```