derive-with 0.2.0

`#[derive(with)]` implements with-constructor for each field in struct.
Documentation
# A custom derive implementation for `#[derive(with)]`
![License](https://img.shields.io/badge/license-MIT-blue.svg)
[![Crates.io](https://img.shields.io/crates/v/derive-with.svg)](https://crates.io/crates/derive-with)

## Get started
```rust
#[derive(with, Default)]
pub struct Foo {
    pub a: i32,
    pub b: String,
}

#[derive(with, Default)]
pub struct Bar (i32, String);

#[test]
fn test_struct() {
    let foo = Foo::default().with_a(1).with_b(1.to_string());
    assert_eq!(foo.a, 1);
    assert_eq!(foo.b, "1".to_string());
    
    let bar = Bar::default().with_0(1).with_1(1.to_string());
    assert_eq!(bar.0, 1);
    assert_eq!(bar.1, "1".to_string());
}
```

## References
- [nrc/derive-new]https://github.com/nrc/derive-new