mirror of https://github.com/zkat/cacache-rs.git
43 lines
898 B
TOML
43 lines
898 B
TOML
[package]
|
|
name = "cacache"
|
|
version = "5.0.0"
|
|
authors = ["Kat Marchán <kzm@zkat.tech>"]
|
|
edition = "2018"
|
|
description = "Content-addressable, key-value, high-performance, on-disk cache."
|
|
license-file = "LICENSE.md"
|
|
repository = "https://github.com/zkat/cacache-rs"
|
|
homepage = "https://github.com/zkat/cacache-rs"
|
|
readme = "README.md"
|
|
categories = [
|
|
"caching",
|
|
"filesystem"
|
|
]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[dependencies]
|
|
ssri = "5.0.0"
|
|
hex = "0.3.2"
|
|
tempfile = "3.0.8"
|
|
sha-1 = "0.8.1"
|
|
sha2 = "0.8.0"
|
|
digest = "0.8.0"
|
|
serde_json = "1.0.39"
|
|
serde = "1.0.92"
|
|
serde_derive = "1.0.92"
|
|
walkdir = "2.2.7"
|
|
either = "1.5.2"
|
|
futures-preview = "0.3.0-alpha.18"
|
|
async-std = { version = "0.99.10", features = ["unstable"]}
|
|
anyhow = "1.0.16"
|
|
thiserror = "1.0.3"
|
|
|
|
[dev-dependencies]
|
|
async-attributes = "1.0.0"
|
|
criterion = "0.2.11"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|