view Cargo.toml @ 62:9c7a2ca7c2fc v0.1.9

Release v0.1.9 with #8
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 23 Jul 2021 05:32:55 +0200
parents 3b460e15706a
children f52e84dfb3fa
line wrap: on
line source

[package]
name = "memoize"
version = "0.1.9"
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"

[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"] }

lru = { version = "0.6", optional = true }

[features]
default = []
full = ["lru"]