changeset 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 1e04262eb933
children b8ef95215b68
files Cargo.toml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Cargo.toml	Fri Dec 02 21:12:14 2022 +0100
+++ b/Cargo.toml	Fri Dec 02 22:05:36 2022 +0100
@@ -1,6 +1,6 @@
 [package]
 name = "memoize"
-version = "0.3.2"
+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>"]    
@@ -12,7 +12,7 @@
 
 [dependencies]
 
-memoize-inner = { path = "inner/", version = "0.2.1" }
+memoize-inner = { path = "inner/", version = "0.3" }
 lazy_static = "1.4"
 lru = { version = "0.7", optional = true }