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.21 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 = "aptos-secure-storage"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
repository = "https://github.com/aptos-labs/aptos-core"
description = "Aptos's Persistent, Secure Storage"
homepage = "https://aptoslabs.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"
aptos-crypto = { path = "../../crates/aptos-crypto" }
aptos-github-client = { path = "github" }
aptos-infallible = { path = "../../crates/aptos-infallible" }
aptos-logger = { path = "../../crates/aptos-logger" }
aptos-temppath = { path = "../../crates/aptos-temppath" }
aptos-time-service = { path = "../../crates/aptos-time-service" }
aptos-vault-client = { path = "vault" }
aptos-workspace-hack = { version = "0.1", path = "../../crates/aptos-workspace-hack" }
[dev-dependencies]
aptos-crypto = { path = "../../crates/aptos-crypto", features = ["fuzzing"] }
aptos-crypto-derive = { path = "../../crates/aptos-crypto-derive" }
rand = "0.8.3"
[features]
fuzzing = ["aptos-crypto/fuzzing"]
testing = []