view inner/Cargo.toml @ 77:e010a33862ac

Match memoized function's visibility with base function's visibility
author Leodore <lconrads@ucsc.edu>
date Thu, 24 Mar 2022 00:25:47 -0700
parents 3adb990ef496
children 2ccee100cd33
line wrap: on
line source

[package]
name = "memoize-inner"
version = "0.2.1"
description = "Helper crate for memoize."
authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]
homepage = "https://github.com/dermesser/memoize"
repository = "https://github.com/dermesser/memoize"
documentation = "https://docs.rs/memoize-inner"
edition = "2018"
license = "MIT"

[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
lazy_static = "1.4"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }

[features]
default = []
full = []