forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 1.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
[package]
name = "mc-consensus-enclave"
version = "2.0.0"
authors = ["MobileCoin"]
edition = "2021"
description = "MobileCoin Consensus Enclave - Application Code"
[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"