forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.81 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
[package]
name = "mc-consensus-enclave"
version = "6.1.0"
authors = ["MobileCoin"]
edition = "2021"
description = "MobileCoin Consensus Enclave - Application Code"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[dependencies]
mc-attest-core = { path = "../../attest/core" }
mc-attest-enclave-api = { path = "../../attest/enclave-api" }
mc-attest-verifier = { path = "../../attest/verifier" }
mc-blockchain-types = { path = "../../blockchain/types" }
mc-common = { path = "../../common" }
mc-consensus-enclave-api = { path = "./api" }
mc-consensus-enclave-edl = { path = "./edl" }
mc-crypto-keys = { path = "../../crypto/keys" }
mc-enclave-boundary = { path = "../../enclave-boundary" }
mc-sgx-panic-edl = { path = "../../sgx/panic-edl" }
mc-sgx-report-cache-api = { path = "../../sgx/report-cache/api" }
mc-sgx-slog-edl = { path = "../../sgx/slog-edl" }
mc-sgx-types = { path = "../../sgx/types" }
mc-sgx-urts = { path = "../../sgx/urts" }
mc-transaction-core = { path = "../../transaction/core" }
mc-util-serial = { path = "../../util/serial" }
[build-dependencies]
mc-util-build-script = { path = "../../util/build/script" }
mc-util-build-sgx = { path = "../../util/build/sgx" }
cargo-emit = "0.2.1"
pkg-config = "0.3"
[dev-dependencies]
mc-attest-ake = { path = "../../attest/ake" }
mc-attest-api = { path = "../../attest/api" }
mc-consensus-enclave-measurement = { path = "../../consensus/enclave/measurement" }
mc-fog-test-infra = { path = "../../fog/test_infra" }
mc-ledger-db = { path = "../../ledger/db", features = ["test_utils"] }
mc-rand = "1.0"
mc-sgx-report-cache-untrusted = { path = "../../sgx/report-cache/untrusted" }
mc-transaction-core-test-utils = { path = "../../transaction/core/test-utils" }
mc-util-metrics = { path = "../../util/metrics" }
aes-gcm = "0.10.3"
lazy_static = "1"
sha2 = "0.10"