-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 829 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 829 Bytes
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
[package]
name = "minikv-core"
version.workspace = true
edition.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
thiserror.workspace = true
tracing.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
base64 = { workspace = true }
blake3 = { workspace = true }
hex = { workspace = true }
dashmap = { workspace = true }
rusty-leveldb = { workspace = true }
reqwest = { workspace = true, features = ["rustls", "stream", "json"] }
bytes = { workspace = true }
tokio = { workspace = true, features = ["full"] }
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
wiremock = { workspace = true }