view Cargo.toml @ 96:528ce50ec228

Applied comments by @dermesser
author blyxyas <blyxyas@gmail.com>
date Sun, 15 Jan 2023 13:15:04 +0100
parents 3d9facf8c639
children f0d6ef116542
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 }

[dev-dependencies]

rustc-hash = "1.1.0"
ahash = "0.8.2"

[workspace]
members = ["inner/"]

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