-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 1.45 KB
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
[package]
name = "mc-fog-api"
version = "7.0.2"
authors = ["MobileCoin"]
edition = "2021"
links = "mc-fog-api"
license = "Apache-2.0"
readme = "README.md"
rust-version = { workspace = true }
[dependencies]
displaydoc = { workspace = true }
futures = { workspace = true }
grpcio = { workspace = true, features = ["prost-codec"] }
prost = { workspace = true, features = ["prost-derive"] }
tonic = { workspace = true, features = ["codegen", "prost"] }
mc-api = { workspace = true }
mc-attest-api = { workspace = true }
mc-attest-core = { workspace = true }
mc-attest-enclave-api = { workspace = true }
mc-consensus-api = { workspace = true }
mc-crypto-keys = { workspace = true }
mc-fog-enclave-connection = { workspace = true }
mc-fog-report-api = { workspace = true }
mc-fog-report-types = { workspace = true }
mc-fog-types = { workspace = true }
mc-fog-uri = { workspace = true }
mc-util-encodings = { workspace = true }
mc-util-from-random = { workspace = true }
mc-util-grpc = { workspace = true }
mc-util-serial = { workspace = true }
mc-watcher-api = { workspace = true }
[build-dependencies]
mc-util-build-grpc = { workspace = true }
mc-util-build-script = { workspace = true }
tonic-build = { workspace = true }
cargo-emit = { workspace = true }
[dev-dependencies]
mc-fog-kex-rng = { workspace = true }
mc-fog-report-api-test-utils = { workspace = true }
mc-fog-types = { workspace = true }
mc-transaction-core = { workspace = true }
mc-util-test-helper = { workspace = true }