[package]
edition = "2021"
name = "cached-pair"
version = "0.14.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple pair of values, where the one can be convertible to the other."
documentation = "https://docs.rs/cached-pair/latest/cached_pair/"
readme = "readme.md"
keywords = [
"pair",
"cache",
"conversion",
"either",
"data-structure",
]
categories = [
"data-structures",
"caching",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/wada314/cached_pair"
[features]
default = []
itertools = ["dep:itertools"]
[lib]
name = "cached_pair"
path = "src/lib.rs"
[dependencies.itertools]
version = "0.14.0"
optional = true