Derive Deref Macro

Crate derive-deref-rs is a macro library used to easily defined the Derive and DrerfMut trait of the core library.

How to use #[derive(Deref)]

```rust

[derive(Deref)]

struct MyStruct(String); ``` This will also work since it's have only one field.

Limitation of the macro.