forked from jaemk/cached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (56 loc) · 1.48 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "cached"
version = "0.26.2"
authors = ["James Kominick <[email protected]>"]
description = "Generic cache implementations and simplified function memoization"
repository = "https://github.com/jaemk/cached"
documentation = "https://docs.rs/cached"
readme = "README.md"
categories = ["caching"]
keywords = ["caching", "cache", "memoize", "lru"]
license = "MIT"
edition = "2018"
[badges]
travis-ci = { repository = "jaemk/cached", branch = "master" }
[features]
default = ["proc_macro", "async"]
proc_macro = ["async-mutex", "async-rwlock", "cached_proc_macro", "cached_proc_macro_types"]
async = ["futures", "async-trait"]
[dependencies.hashbrown]
version = "0.11.2"
default-features = false
features = ["raw"]
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.11"
[dependencies.async-mutex]
version = "1.4"
optional = true
[dependencies.async-rwlock]
version = "1.3"
optional = true
[dependencies.cached_proc_macro]
version = "0.7.1"
path = "cached_proc_macro"
optional = true
[dependencies.cached_proc_macro_types]
version = "0.1.0"
path = "cached_proc_macro_types"
optional = true
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.async-trait]
version = "0.1"
optional = true
[dev-dependencies.tokio]
version = "1.12"
features = ["macros", "time", "rt-multi-thread"]
[dev-dependencies.async-std]
version = "1.6"
features = ["attributes"]
[dev-dependencies.smartstring]
version = "0.2.9"
[workspace]
members = ["cached_proc_macro"]