delegate 0.6.2

Method delegation with less boilerplate
Documentation
[package]
name = "delegate"
description = "Method delegation with less boilerplate"
version = "0.6.2"
authors = ["Godfrey Chan <godfreykfc@gmail.com>", "Jakub Beránek <berykubik@gmail.com>"]
repository = "https://github.com/kobzol/rust-delegate"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
include = [
    "src/*.rs",
    "Cargo.toml",
    "README.md"
]

[dependencies]
syn = { version = "1", features = ["full", "visit-mut"] }
quote = "1"
proc-macro2 = "1"

[lib]
proc-macro = true

[dev-dependencies]
async-trait = "0.1.50"
futures = "0.3.16"
tokio = { version = "1.16.1", features = ["sync"] }