forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (75 loc) · 2.95 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
[package]
name = "mc-fog-view-server"
version = "6.1.0"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
rust-version = { workspace = true }
[lib]
name = "mc_fog_view_server"
path = "src/lib.rs"
[[bin]]
name = "fog_view_server"
path = "src/bin/main.rs"
[[bin]]
name = "fog_view_router"
path = "src/bin/router.rs"
[dependencies]
# third party
clap = { version = "4.5", features = ["derive", "env"] }
displaydoc = { version = "0.2", default-features = false }
futures = "0.3"
grpcio = "0.13"
lazy_static = "1.4"
prometheus = "0.13"
# mobilecoin
mc-api = { path = "../../../api" }
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-crypto-keys = { path = "../../../crypto/keys" }
# fog
mc-fog-api = { path = "../../api" }
mc-fog-kex-rng = { path = "../../kex_rng" }
mc-fog-recovery-db-iface = { path = "../../recovery_db_iface" }
mc-fog-sql-recovery-db = { path = "../../sql_recovery_db" }
mc-fog-types = { path = "../../types" }
mc-fog-uri = { path = "../../uri" }
mc-fog-view-enclave = { path = "../enclave" }
mc-fog-view-enclave-api = { path = "../enclave/api" }
mc-sgx-report-cache-untrusted = { path = "../../../sgx/report-cache/untrusted" }
mc-util-cli = { path = "../../../util/cli" }
mc-util-from-random = { path = "../../../util/from-random" }
mc-util-grpc = { path = "../../../util/grpc" }
mc-util-metrics = { path = "../../../util/metrics" }
mc-util-parse = { path = "../../../util/parse" }
mc-util-serial = { path = "../../../util/serial" }
mc-util-telemetry = { path = "../../../util/telemetry", features = ["jaeger"] }
mc-util-uri = { path = "../../../util/uri" }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_json = "1.0"
[dev-dependencies]
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 = ["loggers"] }
mc-crypto-keys = { path = "../../../crypto/keys" }
mc-crypto-x509-test-vectors = { path = "../../../crypto/x509/test-vectors" }
mc-fog-test-infra = { path = "../../test_infra" }
mc-fog-types = { path = "../../types" }
mc-fog-view-connection = { path = "../connection" }
mc-fog-view-enclave-measurement = { path = "../enclave/measurement" }
mc-fog-view-protocol = { path = "../protocol" }
mc-fog-view-server-test-utils = { path = "./test-utils" }
mc-transaction-core = { path = "../../../transaction/core" }
mc-util-encodings = { path = "../../../util/encodings" }
mc-util-serial = { path = "../../../util/serial" }
mc-util-test-helper = { path = "../../../util/test-helper" }
mc-util-uri = { path = "../../../util/uri" }
portpicker = "0.1.1"
rand = "0.8"
rand_core = "0.6"
yare = "2.0.0"