forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1.29 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
[package]
name = "network-builder"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos network builder for constructing a network"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.53"
bcs = "0.1.3"
futures = "0.3.12"
rand = "0.8.3"
serde = { version = "1.0.137", default-features = false }
tokio = { version = "1.8.1", features = ["full"] }
aptos-config = { path = "../../config" }
aptos-crypto = { path = "../../crates/aptos-crypto" }
aptos-infallible = { path = "../../crates/aptos-infallible" }
aptos-logger = { path = "../../crates/aptos-logger" }
aptos-secure-storage = { path = "../../secure/storage" }
aptos-time-service = { path = "../../crates/aptos-time-service", features = ["async"] }
aptos-types = { path = "../../types" }
aptos-workspace-hack = { path = "../../crates/aptos-workspace-hack" }
channel = { path = "../../crates/channel" }
event-notifications = { path = "../../state-sync/inter-component/event-notifications" }
netcore = { path = "../netcore" }
network = { path = "../." }
network-discovery = { path = "../discovery" }