view Cargo.toml @ 88:92972ccef3a0 v0.3.3

Fix dependency issue and release v0.3.3
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 02 Dec 2022 22:05:36 +0100
parents 2ccee100cd33
children 7d8d8525f957
line wrap: on
line source

[package]
name = "memoize"
version = "0.3.3"
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.3" }
lazy_static = "1.4"
lru = { version = "0.7", optional = true }

[workspace]
members = ["inner/"]

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