forked from encointer/encointer-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
105 lines (98 loc) · 4.54 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
97
98
99
100
101
102
103
104
105
[workspace]
members = [
"app-libs/exchange-oracle",
"app-libs/sgx-runtime",
"app-libs/stf",
"cli",
"core/direct-rpc-server",
"core/offchain-worker-executor",
"core/parentchain/block-import-dispatcher",
"core/parentchain/block-importer",
"core/parentchain/indirect-calls-executor",
"core/parentchain/light-client",
"core/parentchain/parentchain-crate",
"core/rest-client",
"core/rpc-client",
"core/rpc-server",
"core/tls-websocket-server",
"core-primitives/attestation-handler",
"core-primitives/block-import-queue",
"core-primitives/component-container",
"core-primitives/enclave-api",
"core-primitives/enclave-api/ffi",
"core-primitives/enclave-metrics",
"core-primitives/extrinsics-factory",
"core-primitives/hashing",
"core-primitives/networking-utils",
"core-primitives/node-api",
"core-primitives/node-api/api-client-extensions",
"core-primitives/node-api/api-client-types",
"core-primitives/node-api/factory",
"core-primitives/node-api/metadata",
"core-primitives/node-api/metadata-provider",
"core-primitives/nonce-cache",
"core-primitives/ocall-api",
"core-primitives/primitives-cache",
"core-primitives/rpc",
"core-primitives/settings",
"core-primitives/sgx/crypto",
"core-primitives/sgx/io",
"core-primitives/sgx-runtime-primitives",
"core-primitives/stf-executor",
"core-primitives/stf-interface",
"core-primitives/stf-state-handler",
"core-primitives/stf-state-observer",
"core-primitives/storage",
"core-primitives/substrate-sgx/environmental",
"core-primitives/substrate-sgx/externalities",
"core-primitives/substrate-sgx/sp-io",
"core-primitives/teerex-storage",
"core-primitives/test",
"core-primitives/time-utils",
"core-primitives/top-pool",
"core-primitives/top-pool-author",
"core-primitives/types",
"core-primitives/utils",
"service",
"sidechain/block-composer",
"sidechain/block-verification",
"sidechain/consensus/aura",
"sidechain/consensus/common",
"sidechain/consensus/slots",
"sidechain/peer-fetch",
"sidechain/primitives",
"sidechain/rpc-handler",
"sidechain/sidechain-crate",
"sidechain/state",
"sidechain/validateer-fetch",
]
[patch."https://github.com/apache/teaclave-sgx-sdk.git"]
sgx_alloc = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_crypto_helper = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_libc = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_rand = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_tcrypto = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_trts = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_tstd = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_types = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_ucrypto = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
sgx_urts = { version = "1.1.5", git = "https://github.com/apache/incubator-teaclave-sgx-sdk", tag = "v1.1.5" }
#[patch."https://github.com/integritee-network/sgx-runtime"]
#sgx-runtime = { path = "../sgx-runtime/runtime"}
#sp-io = { path = "../sgx-runtime/substrate-sgx/sp-io"}
#sgx-externalities = { path = "../sgx-runtime/substrate-sgx/externalities"}
#[patch."https://github.com/integritee-network/integritee-node"]
#my-node-runtime = { package = "integritee-node-runtime", path = "../integritee-node/runtime"}
#[patch."https://github.com/scs/substrate-api-client"]
#substrate-api-client = { path = "../../scs/substrate-api-client" }
#substrate-client-keystore = { path = "../../scs/substrate-api-client/client-keystore" }
#[patch."https://github.com/integritee-network/pallets.git"]
#pallet-claims = { path = "../pallets/claims" }
#pallet-teerex = { path = "../pallets/teerex" }
#pallet-teeracle = { path = "../pallets/teeracle" }
#teerex-primitives = {path = "../pallets/primitives/teerex"}
#pallet-parentchain = { path = "../pallets/parentchain" }
#itp-types = { path = "../pallets/primitives/types"}
#itp-utils = { path = "../pallets/primitives/utils"}
#[patch."https://github.com/integritee-network/http_req"]
#http_req = {path = '..//http_req' }