-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 981 Bytes
/
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
[package]
name = "ocra"
version = "0.1.1"
authors = ["[email protected]"]
repository = "https://github.com/lancedb/ocra"
description = "OCRA: A Rust implementation of Cache in arrow-rs' ObjectStore interface"
edition = "2021"
license-file = "LICENSE"
keywords = ["cache", "object-store", "arrow"]
categories = ["caching"]
[dependencies]
async-trait = "~0.1"
bytes = "~1.9"
futures = "~0.3"
log = "~0.4"
moka = { version = "~0.12", features = ["future"] }
num_cpus = "1.16"
object_store = "=0.10.2"
sysinfo = "~0.32"
tokio = { version = "1", features = ["sync"] }
[dev-dependencies]
criterion = { version = "~0.5", features = ["async_tokio"] }
tempfile = "~3.14"
tokio = { version = "1", features = ["full"] }
rand = "~0.8"
[[bench]]
name = "memory"
harness = false
[lints.clippy]
all = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
multiple-crate-versions = "allow"