forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 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
34
35
36
37
38
39
40
41
42
[package]
name = "mc-peers"
version = "1.0.0"
authors = ["MobileCoin"]
edition = "2018"
[features]
test_utils = []
[dependencies]
mc-attest-api = { path = "../attest/api" }
mc-attest-enclave-api = { path = "../attest/enclave-api" }
mc-common = { path = "../common", features = ["log"] }
mc-connection = { path = "../connection" }
mc-consensus-api = { path = "../consensus/api" }
mc-consensus-enclave-api = { path = "../consensus/enclave/api" }
mc-consensus-scp = { path = "../consensus/scp" }
mc-crypto-digestible = { path = "../crypto/digestible" }
mc-crypto-keys = { path = "../crypto/keys" }
mc-ledger-db = { path = "../ledger/db" }
mc-transaction-core = { path = "../transaction/core" }
mc-util-grpc = { path = "../util/grpc" }
mc-util-serial = { path = "../util/serial" }
mc-util-uri = { path = "../util/uri" }
crossbeam-channel = "0.4"
ed25519 = { version = "1.0.1", default-features = false, features = ["serde"] }
failure = "0.1.8"
grpcio = "0.6.0"
mockall = "0.7.2"
protobuf = "2.12"
retry = "0.5"
sha2 = { version = "0.9", default-features = false }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
url = "2.1"
[dev-dependencies]
mc-connection-test-utils = { path = "../connection/test-utils" }
mc-peers-test-utils = { path = "./test-utils" }
rand_hc = "0.2"
rand = "0.7"