forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1.33 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
[package]
name = "mc-peers"
version = "4.1.0-pre0"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[features]
test_utils = []
[dependencies]
mc-attest-api = { path = "../attest/api" }
mc-attest-core = { path = "../attest/core" }
mc-attest-enclave-api = { path = "../attest/enclave-api" }
mc-blockchain-types = { path = "../blockchain/types" }
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.5"
displaydoc = "0.2"
grpcio = "0.12.1"
mockall = "0.11.3"
protobuf = "2.27.1"
retry = "2.0"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
[dev-dependencies]
mc-connection-test-utils = { path = "../connection/test-utils" }
mc-peers-test-utils = { path = "./test-utils" }
rand = "0.8"
rand_hc = "0.3"