-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 1.03 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
[package]
name = "deduplicate"
version = "0.4.0"
description = "caching, asynchronous, request deduplication"
authors = [
"garypen <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/garypen/deduplicate"
homepage = "https://github.com/garypen/deduplicate"
documentation = "https://github.com/garypen/deduplicate#readme"
readme = "README.md"
keywords = ["deduplicate", "coalesce", "delegate", "caching", "request"]
categories = ["asynchronous", "caching", "concurrency"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.74"
lru = "0.12.1"
parking_lot = "0.12.1"
thiserror = "1.0.50"
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "sync"] }
tracing = "0.1.40"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
futures = "0.3.29"
moka = { version = "0.12.1", features = [ "future"] }
rand = "0.8.5"
tokio-test = "0.4.3"
[[bench]]
name = "deduplicate"
harness = false