view Cargo.toml @ 52:d713ed3952ac v0.1.7

Release v0.1.7 Release of #6 for #5
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 22 Feb 2021 21:48:29 +0100
parents 29e8598d43e0
children ed0142e2b833
line wrap: on
line source

[package]
name = "memoize"
version = "0.1.7"
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.58", features = ["full"] }

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

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