forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1 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
[package]
name = "vm_validator"
version = "0.1.0"
authors = ["Libra Association <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
futures = "0.1.25"
config = { path = "../config" }
crypto = { path = "../crypto/legacy_crypto" }
failure = { path = "../common/failure_ext", package = "failure_ext" }
proto_conv = { path = "../common/proto_conv" }
scratchpad = { path = "../storage/scratchpad" }
state_view = { path = "../storage/state_view" }
storage_client = { path = "../storage/storage_client" }
types = { path = "../types" }
vm_runtime = { path = "../language/vm/vm_runtime" }
[dev-dependencies]
grpcio = "0.4.4"
assert_matches = "1.3.0"
execution_proto = { path = "../execution/execution_proto" }
execution_service = { path = "../execution/execution_service" }
grpc_helpers = { path = "../common/grpc_helpers" }
storage_service = { path = "../storage/storage_service" }
vm_genesis = { path = "../language/vm/vm_genesis" }
config_builder = { path = "../config/config_builder" }