[package]
edition = "2021"
name = "method_chaining"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust procedural macro that automatically makes functions and structs chainable."
readme = "README.md"
license = "CC0-1.0"
[lib]
name = "method_chaining"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "example1"
path = "tests/example1.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit-mut",
]
[dev-dependencies.trybuild]
version = "1.0"