forked from mobilecoinfoundation/mobilecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
96 lines (92 loc) · 2.34 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
85
86
87
88
89
90
91
92
93
94
95
96
[workspace]
members = [
"api",
"attest/ake",
"attest/api",
"attest/core",
"attest/net",
"attest/trusted",
"attest/untrusted",
"common",
"connection",
"connection/test-utils",
"consensus/api",
"consensus/enclave",
"consensus/enclave/api",
"consensus/enclave/edl",
"consensus/enclave/impl",
"consensus/enclave/measurement",
"consensus/enclave/mock",
"consensus/scp",
"consensus/scp/play",
"consensus/service",
"crypto/box",
"crypto/digestible",
"crypto/keys",
"crypto/noise",
"crypto/rand",
"crypto/message-cipher",
"enclave-boundary",
"ledger/db",
"ledger/distribution",
"ledger/sync",
"mobilecoind",
"mobilecoind/api",
"peers",
"peers/test-utils",
"sgx/core-types",
"sgx/core-types-sys",
"sgx/epid-sys",
"sgx/epid-types",
"sgx/epid-types-sys",
"sgx/backtrace-edl",
"sgx/compat-edl",
"sgx/css",
"sgx/debug-edl",
"sgx/panic-edl",
"sgx/slog-edl",
"testnet-client",
"transaction/core",
"transaction/core/test-utils",
"transaction/std",
"util/b58-payloads",
"util/build/enclave",
"util/build/grpc",
"util/build/sgx",
"util/build/script",
"util/encodings",
"util/from-random",
"util/generate-sample-ledger",
"util/grpc",
"util/host-cert",
"util/keyfile",
"util/logger-macros",
"util/metered-channel",
"util/metrics",
"util/serial",
"util/test-helper",
"util/uri",
]
exclude = [
# mc-util-serial should only be accessed via the `common` crate.
"util/serial",
# N.B. for some reason, putting these crates under `exclude` helps with
# making `cargo test --all` work, when `consensus-enclave-impl` is part of workspace
"sgx",
]
[profile.dev]
opt-level = 0
rpath = true
[profile.release]
opt-level = 3
rpath = false
lto = false
debug-assertions = false
overflow-checks = false
# Skip the need for LD_LIBRARY_PATH in `cargo test`
[profile.test]
rpath = true
[patch.crates-io]
rouille = { git = "https://github.com/tomaka/rouille/", rev = "db66a3b47af4271939e1aba21d0f36ccba3d1b70" }
prost = { git = "https://github.com/mobilecoinofficial/prost", rev = "4e1905329369ca7a1cac3eda978ee9379167ee95" }
prost-derive = { git = "https://github.com/mobilecoinofficial/prost", rev = "4e1905329369ca7a1cac3eda978ee9379167ee95" }