impl-template 1.0.0-alpha

A procedural macro for generating impl-blocks based on a simple template.
[package]
name = "impl-template"
version = "1.0.0-alpha"
authors = ["Thomas Eizinger <thomas@eizinger.io>"]
autotests = false
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/thomaseizinger/rust-impl-template"
documentation = "https://docs.rs/impl-template/"
description = "A procedural macro for generating impl-blocks based on a simple template."

[lib]
proc-macro = true

[[test]]
name = "tests"
path = "tests/trybuild-tests.rs"

[dependencies]
syn = { version = "1.0", features = ["full", "extra-traits", "visit", "visit-mut"] }
quote = "1.0.2"
proc-macro2 = { version = "1.0.8", features = ["span-locations"] }
itertools = "0.8"

[dev-dependencies]
trybuild = "1.0"