-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move top pool and top pool author crates to core primitives (#705)
- Loading branch information
Felix Müller
authored
Apr 12, 2022
1 parent
cefe0e5
commit a83cd2a
Showing
53 changed files
with
285 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "its-top-pool-rpc-author" | ||
name = "itp-top-pool-author" | ||
version = "0.8.0" | ||
authors = ["Integritee AG <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -14,12 +14,11 @@ std = [ | |
"itp-sgx-crypto/std", | ||
"itc-direct-rpc-server/std", | ||
"itc-tls-websocket-server/std", | ||
"itp-component-container/std", | ||
"itp-enclave-metrics/std", | ||
"itp-ocall-api/std", | ||
"itp-stf-state-handler/std", | ||
"itp-top-pool/std", | ||
"itp-types/std", | ||
"its-top-pool/std", | ||
"jsonrpc-core", | ||
"log/std", | ||
"thiserror", | ||
|
@@ -31,15 +30,14 @@ sgx = [ | |
"ita-stf/sgx", | ||
"itc-direct-rpc-server/sgx", | ||
"itc-tls-websocket-server/sgx", | ||
"itp-component-container/sgx", | ||
"itp-enclave-metrics/sgx", | ||
"itp-sgx-crypto/sgx", | ||
"itp-stf-state-handler/sgx", | ||
"itp-top-pool/sgx", | ||
"itp-types/sgx", | ||
"its-top-pool/sgx", | ||
"thiserror_sgx", | ||
] | ||
test = [ "itp-test/sgx" ] | ||
test = [ "itp-test/sgx", "itp-top-pool/mocks" ] | ||
|
||
[dependencies] | ||
# sgx dependencies | ||
|
@@ -51,14 +49,13 @@ sgx-crypto-helper = { branch = "master", git = "https://github.com/apache/teacla | |
ita-stf = { path = "../../app-libs/stf", default-features = false } | ||
itc-direct-rpc-server = { path = "../../core/direct-rpc-server", default-features = false } | ||
itc-tls-websocket-server = { path = "../../core/tls-websocket-server", default-features = false } | ||
itp-component-container = { path = "../../core-primitives/component-container", default-features = false } | ||
itp-enclave-metrics = { path = "../../core-primitives/enclave-metrics", default-features = false } | ||
itp-ocall-api = { path = "../../core-primitives/ocall-api", default-features = false } | ||
itp-sgx-crypto = { path = "../../core-primitives/sgx/crypto", default-features = false } | ||
itp-stf-state-handler = { path = "../../core-primitives/stf-state-handler", default-features = false } | ||
itp-test = { path = "../../core-primitives/test", default-features = false, optional = true } | ||
itp-types = { path = "../../core-primitives/types", default-features = false } | ||
its-top-pool = { path = "../top-pool", default-features = false } | ||
itp-enclave-metrics = { path = "../enclave-metrics", default-features = false } | ||
itp-ocall-api = { path = "../ocall-api", default-features = false } | ||
itp-sgx-crypto = { path = "../sgx/crypto", default-features = false } | ||
itp-stf-state-handler = { path = "../stf-state-handler", default-features = false } | ||
itp-test = { path = "../test", default-features = false, optional = true } | ||
itp-top-pool = { path = "../top-pool", default-features = false } | ||
itp-types = { path = "../types", default-features = false } | ||
|
||
# sgx enabled external libraries | ||
jsonrpc-core_sgx = { package = "jsonrpc-core", git = "https://github.com/scs/jsonrpc", branch = "no_std", default-features = false, optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.