forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 1.15 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
37
38
[package]
name = "diem-secure-storage"
version = "0.1.0"
authors = ["Diem Association <[email protected]>"]
repository = "https://github.com/diem/diem"
description = "Diem's Persistent, Secure Storage"
homepage = "https://diem.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
base64 = "0.13.0"
chrono = "0.4.19"
enum_dispatch = "0.3.5"
rand = "0.8.3"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde_json = "1.0.64"
thiserror = "1.0.24"
bcs = "0.1.2"
diem-crypto = { path = "../../crates/diem-crypto" }
diem-github-client = { path = "github" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-logger = { path = "../../common/logger" }
diem-temppath = { path = "../../common/temppath" }
diem-time-service = { path = "../../crates/diem-time-service" }
diem-vault-client = { path = "vault" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
[dev-dependencies]
diem-crypto = { path = "../../crates/diem-crypto", features = ["fuzzing"] }
diem-crypto-derive = { path = "../../crates/diem-crypto-derive" }
rand = "0.8.3"
[features]
fuzzing = ["diem-crypto/fuzzing"]
testing = []