forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (41 loc) · 1.7 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
39
40
41
42
43
44
45
[package]
name = "aptos-data-client"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "The Aptos data client"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
async-trait = "0.1.53"
futures = "0.3.21"
itertools = "0.10.0"
rand = "0.7.3"
serde = { version = "1.0.137", default-features = false }
thiserror = "1.0.31"
tokio = { version = "1.18.2", features = ["full"] }
aptos-config = { path = "../../config" }
aptos-crypto = { path = "../../crates/aptos-crypto" }
aptos-id-generator = { path = "../../crates/aptos-id-generator" }
aptos-infallible = { path = "../../crates/aptos-infallible" }
aptos-logger = { path = "../../crates/aptos-logger" }
aptos-metrics-core = { path = "../../crates/aptos-metrics-core" }
aptos-time-service = { path = "../../crates/aptos-time-service", features = ["async"] }
aptos-types = { path = "../../types" }
aptos-workspace-hack = { path = "../../crates/aptos-workspace-hack" }
netcore = { path = "../../network/netcore" }
network = { path = "../../network" }
short-hex-str = { path = "../../crates/short-hex-str" }
storage-service-client = { path = "../storage-service/client" }
storage-service-types = { path = "../storage-service/types" }
[dev-dependencies]
bcs = "0.1.3"
claim = "0.5.0"
maplit = "1.0.2"
tokio = { version = "1.18.2", features = ["rt", "macros"], default-features = false }
aptos-time-service = { path = "../../crates/aptos-time-service", features = ["async", "testing"] }
channel = { path = "../../crates/channel" }
network = { path = "../../network", features = ["fuzzing"] }
storage-service-server = { path = "../storage-service/server" }