method_chaining 0.1.1

A Rust procedural macro that automatically makes functions and structs chainable.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"