[package]
edition = "2021"
name = "maybe-borrow"
version = "0.1.2"
authors = ["Spencer Young"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for conditionally returning borrowed data."
readme = "README.md"
keywords = [
"polonius",
"macro",
]
categories = ["rust-patterns"]
license = "MIT"
[lib]
name = "maybe_borrow"
path = "src/lib.rs"
[[test]]
name = "lending_iterator"
path = "tests/lending_iterator.rs"
[[test]]
name = "lending_stream"
path = "tests/lending_stream.rs"
[[test]]
name = "maps"
path = "tests/maps.rs"
[dependencies.should-it-compile]
version = "0.1.0"
[dev-dependencies.futures]
version = "0.3.31"
[dev-dependencies.pin-project-lite]
version = "0.2.16"