-
Notifications
You must be signed in to change notification settings - Fork 155
/
Cargo.toml
86 lines (78 loc) · 3.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "mc-consensus-service"
version = "6.1.1"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[lib]
path = "src/lib.rs"
[[bin]]
name = "consensus-service"
path = "src/bin/main.rs"
[dependencies]
mc-attest-api = { path = "../../attest/api" }
mc-attest-core = { path = "../../attest/core" }
mc-attest-enclave-api = { path = "../../attest/enclave-api" }
mc-attest-verifier = { path = "../../attest/verifier" }
mc-attest-verifier-types = { path = "../../attest/verifier/types" }
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 = { path = "../../consensus/enclave" }
mc-consensus-scp = { path = "../../consensus/scp" }
mc-consensus-service-config = { path = "config" }
mc-crypto-digestible = { path = "../../crypto/digestible" }
mc-crypto-keys = { path = "../../crypto/keys" }
mc-crypto-multisig = { path = "../../crypto/multisig" }
mc-ledger-db = { path = "../../ledger/db" }
mc-ledger-sync = { path = "../../ledger/sync" }
mc-peers = { path = "../../peers" }
mc-sgx-report-cache-api = { path = "../../sgx/report-cache/api" }
mc-sgx-report-cache-untrusted = { path = "../../sgx/report-cache/untrusted" }
mc-transaction-builder = { path = "../../transaction/builder" }
mc-transaction-core = { path = "../../transaction/core" }
mc-util-cli = { path = "../../util/cli" }
mc-util-grpc = { path = "../../util/grpc" }
mc-util-metered-channel = { path = "../../util/metered-channel" }
mc-util-metrics = { path = "../../util/metrics" }
mc-util-serial = { path = "../../util/serial" }
mc-util-telemetry = { path = "../../util/telemetry", features = ["jaeger"] }
mc-util-uri = { path = "../../util/uri" }
base64 = "0.21"
chrono = "0.4"
clap = { version = "4.5", features = ["derive", "env"] }
displaydoc = { version = "0.2", default-features = false }
fs_extra = "1.3"
futures = "0.3"
grpcio = "0.13"
hex = "0.4"
lazy_static = "1.4"
once_cell = "1.19"
protobuf = "2.27.1"
rand = "0.8"
rayon = "1.9"
retry = "2.0"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = "1.0"
[build-dependencies]
mc-sgx-build = { path = "../../sgx/build" }
[dev-dependencies]
mc-account-keys = { path = "../../account-keys" }
mc-common = { path = "../../common", features = ["loggers"] }
mc-consensus-enclave-mock = { path = "../../consensus/enclave/mock" }
mc-crypto-ring-signature-signer = { path = "../../crypto/ring-signature/signer" }
mc-ledger-db = { path = "../../ledger/db", features = ["test_utils"] }
mc-peers-test-utils = { path = "../../peers/test-utils" }
mc-sgx-report-cache-api = { path = "../../sgx/report-cache/api" }
mc-transaction-core-test-utils = { path = "../../transaction/core/test-utils" }
mc-util-from-random = { path = "../../util/from-random" }
mc-util-logger-macros = { path = "../../util/logger-macros" }
mockall = "0.12.1"
rand_core = { version = "0.6", default-features = false }
rand_hc = "0.3"
serial_test = "3.0"
tempfile = "3.10"
curve25519-dalek = { version = "4.1.1", default-features = false }