-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (18 loc) · 761 Bytes
/
Cargo.toml
File metadata and controls
21 lines (18 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "cache-compute"
version = "0.3.0"
edition = "2021"
description = "This crate implements request/async computation coalescing."
license = "MIT"
repository = "https://github.com/gpluscb/cache-compute/"
keywords = ["cache", "caching", "coalescing", "coalesce"]
categories = ["asynchronous", "caching", "web-programming"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
tokio = { version = "1.29", features = ["sync"] }
futures = { version = "0.3", default-features = false, features = ["std"] }
parking_lot = { version = "0.12", features = ["send_guard"] }
[dev-dependencies]
tokio = { version = "1.29", features = ["macros", "test-util"] }