deprive 0.2.1

Tired of negative impls? Use deprive instead of derive!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# deprive

[![Docs](https://docs.rs/deprive/badge.svg)](https://docs.rs/deprive/latest/deprive/attr.deprive.html)

Tired:

```rust
struct X {}
impl !Send for X {}
impl !Sync for X {}
```

Wired:

```rust
#[deprive(Send, Sync)]
struct X {}
```