deprive 0.2.1

Tired of negative impls? Use deprive instead of derive!
Documentation

deprive

Docs

Tired:

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

Wired:

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