forked from dermesser/memoize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
29 lines (23 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "memoize"
version = "0.4.1"
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.4" }
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"]