-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathCargo.toml
54 lines (48 loc) · 1.67 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
[package]
name = "mc-fog-report-server"
version = "6.1.1"
authors = ["MobileCoin"]
edition = "2021"
license = "GPL-3.0"
rust-version = { workspace = true }
[lib]
name = "mc_fog_report_server"
path = "src/lib.rs"
[[bin]]
name = "report_server"
path = "src/bin/main.rs"
[dependencies]
mc-attest-core = { path = "../../../attest/core" }
mc-common = { path = "../../../common", features = ["log"] }
mc-crypto-keys = { path = "../../../crypto/keys" }
mc-crypto-x509-utils = { path = "../../../crypto/x509/utils" }
mc-fog-api = { path = "../../api" }
mc-fog-recovery-db-iface = { path = "../../recovery_db_iface" }
mc-fog-report-types = { path = "../../report/types" }
mc-fog-sig-report = { path = "../../sig/report" }
mc-fog-sql-recovery-db = { path = "../../sql_recovery_db" }
mc-util-cli = { path = "../../../util/cli" }
mc-util-grpc = { path = "../../../util/grpc" }
mc-util-metrics = { path = "../../../util/metrics" }
mc-util-parse = { path = "../../../util/parse" }
mc-util-uri = { path = "../../../util/uri" }
clap = { version = "4.5", features = ["derive", "env"] }
displaydoc = "0.2"
futures = "0.3"
grpcio = "0.13"
lazy_static = "1.4"
pem = "3.0"
prost = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
signature = "2.1.0"
x509-signature = "0.5"
zeroize = "1"
[dev-dependencies]
rand = "0.8"
mc-attest-verifier-types = { path = "../../../attest/verifier/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-util-from-random = { path = "../../../util/from-random" }