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-config"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos config"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
anyhow = "1.0.57"
bcs = "0.1.3"
get_if_addrs = { version = "0.5.3", default-features = false }
mirai-annotations = "1.12.0"
rand = "0.8.3"
serde = { version = "1.0.137", features = ["rc"], default-features = false }
serde_yaml = "0.8.24"
thiserror = "1.0.31"
aptos-crypto = { path = "../crates/aptos-crypto" }
aptos-crypto-derive = { path = "../crates/aptos-crypto-derive" }
aptos-global-constants = { path = "./global-constants" }
aptos-logger = { path = "../crates/aptos-logger" }
aptos-secure-storage = { path = "../secure/storage" }
aptos-temppath = { path = "../crates/aptos-temppath" }
aptos-types = { path = "../types" }
aptos-workspace-hack = { path = "../crates/aptos-workspace-hack" }
short-hex-str = { path = "../crates/short-hex-str" }
[dev-dependencies]
aptos-crypto = { path = "../crates/aptos-crypto", features = ["fuzzing"] }
[features]
default = []
fuzzing = ["aptos-crypto/fuzzing", "aptos-types/fuzzing"]
testing = []