extfn 0.1.2

Call any freestanding function as `a.foo(b)` instead of `foo(a, b)` just by adding `#[extfn]` and renaming the first parameter to `self`.
Documentation
[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
features = ["full", "extra-traits", "printing", "visit-mut", "visit"]
version = "2.0"

[[example]]
name = "demo"
path = "examples/demo.rs"

[lib]
name = "extfn"
path = "src/lib.rs"
proc-macro = true

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Call any freestanding function as `a.foo(b)` instead of `foo(a, b)` just by adding `#[extfn]` and renaming the first parameter to `self`."
documentation = "https://docs.rs/extfn"
edition = "2021"
homepage = "https://github.com/ondt/extfn"
include = ["examples/demo.rs", "src/lib.rs", "tests/signatures.rs", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
keywords = ["macro", "trait", "extension", "extension-functions"]
license = "MIT OR Apache-2.0"
name = "extfn"
readme = "README.md"
repository = "https://github.com/ondt/extfn"
rust-version = "1.72"
version = "0.1.2"

[[test]]
name = "signatures"
path = "tests/signatures.rs"