[package]
edition = "2024"
name = "piperize"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust crate to easily create a new trait function inspired by elixir's piping function declaration"
documentation = "https://docs.rs/piperize"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/AfkaraLP/piperize"
[lib]
name = "piperize"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "async"
path = "tests/async.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[test]]
name = "visibility"
path = "tests/visibility.rs"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.44"
[dependencies.syn]
version = "2.0.114"
features = ["full"]
[dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dev-dependencies.trybuild]
version = "1"