view Cargo.toml @ 79:ff66cf5c7f8c v0.3.0

Publish version v0.3.0 Containing #12 fixing #11
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 02 Apr 2022 13:52:15 -0700
parents 3adb990ef496
children eb19cc5aeac0
line wrap: on
line source

[package]
name = "memoize"
version = "0.3.0"
description = "Attribute macro for auto-memoizing functions with somewhat-simple signatures"    
keywords = ["memoization", "cache", "proc-macro"]    
authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]    
homepage = "https://github.com/dermesser/memoize"    
repository = "https://github.com/dermesser/memoize"    
documentation = "https://docs.rs/memoize"    
edition = "2018"    
license = "MIT"

[dependencies]

memoize-inner = { path = "inner/", version = "0.2.1" }
lazy_static = "1.4"
lru = { version = "0.6", optional = true }

[workspace]
members = ["inner/"]

[features]
default = []
full = ["lru", "memoize-inner/full"]