diff --git a/Cargo.lock b/Cargo.lock index 06e7f9521e..e28f83688a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1225,7 +1225,6 @@ dependencies = [ "sp-std", "strum 0.25.0", "strum_macros 0.25.2", - "xcm", ] [[package]] @@ -5313,8 +5312,6 @@ dependencies = [ "polkadot-runtime-parachains", "runtime-common", "scale-info", - "serde", - "smallvec", "sp-api", "sp-block-builder", "sp-consensus-aura", @@ -5401,8 +5398,6 @@ dependencies = [ "polkadot-runtime-parachains", "runtime-common", "scale-info", - "serde", - "smallvec", "sp-api", "sp-block-builder", "sp-consensus-aura", @@ -6533,14 +6528,10 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex-literal 0.3.4", - "log", "orml-traits", "pallet-balances", "parity-scale-codec", "scale-info", - "serde", - "smallvec", "sp-core", "sp-io", "sp-runtime", @@ -6738,7 +6729,6 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex", "hex-literal 0.4.1", "pallet-balances", "pallet-bridge", @@ -6967,7 +6957,6 @@ name = "pallet-evm-address" version = "0.1.0" dependencies = [ "fp-evm", - "frame-benchmarking", "frame-support", "frame-system", "hex-literal 0.4.1", @@ -7081,15 +7070,12 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex", - "log", "pallet-balances", "pallet-group", "pallet-teerex", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-arithmetic", "sp-core", "sp-io", "sp-runtime", @@ -7321,16 +7307,13 @@ dependencies = [ "env_logger 0.9.3", "frame-support", "frame-system", - "log", "pallet-balances", "parity-scale-codec", "scale-info", - "serde", "sp-core", "sp-io", "sp-keyring", "sp-runtime", - "sp-std", ] [[package]] @@ -7479,7 +7462,6 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex-literal 0.4.1", "log", "pallet-balances", "pallet-teerex", @@ -7634,7 +7616,6 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "serde", "sgx-verify", "sp-core", "sp-externalities", @@ -7768,15 +7749,12 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex", - "log", "pallet-balances", "pallet-group", "pallet-teerex", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-arithmetic", "sp-core", "sp-io", "sp-runtime", @@ -10108,8 +10086,6 @@ dependencies = [ "polkadot-runtime-parachains", "runtime-common", "scale-info", - "serde", - "smallvec", "sp-api", "sp-block-builder", "sp-consensus-aura", @@ -10299,7 +10275,6 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", - "frame-benchmarking", "frame-support", "frame-system", "log", @@ -10315,7 +10290,6 @@ dependencies = [ "pallet-membership", "pallet-multisig", "pallet-teerex", - "pallet-timestamp", "pallet-transaction-payment", "pallet-treasury", "pallet-vesting", @@ -11817,7 +11791,6 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-io", "sp-std", "teerex-primitives", "webpki 0.21.0", @@ -11917,9 +11890,6 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-io", - "sp-runtime", - "sp-std", ] [[package]] @@ -13159,7 +13129,6 @@ name = "teeracle-primitives" version = "0.1.0" dependencies = [ "common-primitives", - "sp-std", "substrate-fixed 0.5.9 (git+https://github.com/encointer/substrate-fixed.git?tag=v0.5.9)", ] @@ -13167,13 +13136,10 @@ dependencies = [ name = "teerex-primitives" version = "0.1.0" dependencies = [ - "common-primitives", "hex-literal 0.4.1", "parity-scale-codec", "scale-info", - "serde", "sp-core", - "sp-io", "sp-std", ] @@ -13210,7 +13176,6 @@ name = "test-utils" version = "0.1.0" dependencies = [ "hex-literal 0.4.1", - "log", "teerex-primitives", ] @@ -13784,7 +13749,7 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand 0.7.3", + "rand 0.8.5", "static_assertions", ] diff --git a/pallets/bridge-transfer/Cargo.toml b/pallets/bridge-transfer/Cargo.toml index d3fbf8a4ab..e25a447163 100644 --- a/pallets/bridge-transfer/Cargo.toml +++ b/pallets/bridge-transfer/Cargo.toml @@ -26,8 +26,6 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk pallet-bridge = { path = "../bridge", default-features = false } pallet-parachain-staking = { path = "../parachain-staking", default-features = false } -hex = { version = "0.4", default-features = false } - [dev-dependencies] hex-literal = "0.4" pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } diff --git a/pallets/evm-address/Cargo.toml b/pallets/evm-address/Cargo.toml index aafd29afd4..b20aaeac61 100644 --- a/pallets/evm-address/Cargo.toml +++ b/pallets/evm-address/Cargo.toml @@ -15,7 +15,6 @@ scale-info = { version = "2.9.0", default-features = false, features = ["derive" sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false, optional = true } frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } @@ -34,7 +33,6 @@ fp-evm = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v0 [features] default = ["std"] runtime-benchmarks = [ - "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-ethereum/runtime-benchmarks", @@ -45,6 +43,5 @@ std = [ "sp-runtime/std", "frame-support/std", "frame-system/std", - "frame-benchmarking?/std", ] try-runtime = ["frame-support/try-runtime"] diff --git a/pallets/identity-management/Cargo.toml b/pallets/identity-management/Cargo.toml index 6aaad6e5bd..298bb63e55 100644 --- a/pallets/identity-management/Cargo.toml +++ b/pallets/identity-management/Cargo.toml @@ -9,12 +9,10 @@ version = '0.1.0' [dependencies] # third-party dependencies codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } -log = { version = "0.4", default-features = false } pallet-teerex = { path = "../teerex", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } # primitives -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } @@ -25,7 +23,6 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk # benchmarking frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false, optional = true } -hex = { version = "0.4", default-features = false } test-utils = { path = "../test-utils", default-features = false, optional = true } # local @@ -58,7 +55,6 @@ std = [ "sp-runtime/std", "sp-io/std", "sp-core/std", - "sp-arithmetic/std", "frame-support/std", "frame-system/std", "frame-benchmarking?/std", diff --git a/pallets/parentchain/Cargo.toml b/pallets/parentchain/Cargo.toml index 0c534508de..dc48c83055 100644 --- a/pallets/parentchain/Cargo.toml +++ b/pallets/parentchain/Cargo.toml @@ -10,9 +10,7 @@ edition = "2021" [dependencies] codec = { version = "3.0.0", default-features = false, features = ["derive"], package = "parity-scale-codec" } -log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", features = ["derive"], optional = true } # substrate dependencies frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } @@ -20,7 +18,6 @@ frame-system = { default-features = false, package = "frame-system", git = "http sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [dev-dependencies] env_logger = "0.9.0" @@ -31,16 +28,13 @@ pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch default = ["std"] std = [ "codec/std", - "log/std", "scale-info/std", - "serde", # substrate dependencies "frame-support/std", "frame-system/std", "sp-core/std", "sp-io/std", "sp-runtime/std", - "sp-std/std", ] try-runtime = ["frame-support/try-runtime"] diff --git a/pallets/sidechain/Cargo.toml b/pallets/sidechain/Cargo.toml index c302f9cff7..b6f965ae22 100644 --- a/pallets/sidechain/Cargo.toml +++ b/pallets/sidechain/Cargo.toml @@ -30,7 +30,6 @@ sp-std = { default-features = false, git = "https://github.com/paritytech/substr # benchmarking frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -hex-literal = { version = "0.4.1", optional = true } pallet-balances = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } test-utils = { path = "../test-utils", default-features = false, optional = true } @@ -38,7 +37,6 @@ test-utils = { path = "../test-utils", default-features = false, optional = true env_logger = "0.9.0" externalities = { package = "sp-externalities", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -hex-literal = "0.4.1" pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } test-utils = { path = "../test-utils" } @@ -65,7 +63,6 @@ std = [ ] runtime-benchmarks = [ "frame-benchmarking", - "hex-literal", "pallet-balances", "pallet-timestamp/runtime-benchmarks", "test-utils", diff --git a/pallets/teerex/Cargo.toml b/pallets/teerex/Cargo.toml index 39b2aafa9f..bb9f947a2e 100644 --- a/pallets/teerex/Cargo.toml +++ b/pallets/teerex/Cargo.toml @@ -12,7 +12,6 @@ edition = "2021" codec = { version = "3.0.0", default-features = false, features = ["derive"], package = "parity-scale-codec" } log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", features = ["derive"], optional = true } # local sgx-verify = { path = "./sgx-verify", default-features = false } @@ -48,7 +47,6 @@ std = [ "codec/std", "log/std", "scale-info/std", - "serde", # local "sgx-verify/std", "teerex-primitives/std", diff --git a/pallets/teerex/sgx-verify/Cargo.toml b/pallets/teerex/sgx-verify/Cargo.toml index ca7495f5c4..5aa18d8426 100644 --- a/pallets/teerex/sgx-verify/Cargo.toml +++ b/pallets/teerex/sgx-verify/Cargo.toml @@ -27,7 +27,6 @@ teerex-primitives = { path = "../../../primitives/teerex", default-features = fa # substrate dependencies frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [dev-dependencies] @@ -52,6 +51,5 @@ std = [ # substrate "frame-support/std", "sp-core/std", - "sp-io/std", "sp-std/std", ] diff --git a/pallets/teerex/sgx-verify/fuzz/Cargo.toml b/pallets/teerex/sgx-verify/fuzz/Cargo.toml index 8fe43fc685..1db43f8955 100644 --- a/pallets/teerex/sgx-verify/fuzz/Cargo.toml +++ b/pallets/teerex/sgx-verify/fuzz/Cargo.toml @@ -10,7 +10,6 @@ cargo-fuzz = true [dependencies] base64 = { version = "0.13", default-features = false, features = ["alloc"] } codec = { version = "3.0.0", default-features = false, features = ["derive"], package = "parity-scale-codec" } -hex-literal = "0.3.4" libfuzzer-sys = "0.4" serde_json = { version = "1.0" } webpki = { default-features = false, git = "https://github.com/scs/webpki-nostd.git", branch = "master" } diff --git a/pallets/test-utils/Cargo.toml b/pallets/test-utils/Cargo.toml index 0f64731192..ee64980c84 100644 --- a/pallets/test-utils/Cargo.toml +++ b/pallets/test-utils/Cargo.toml @@ -10,7 +10,6 @@ edition = "2021" [dependencies] hex-literal = { version = "0.4.1" } -log = { version = "0.4", default-features = false } [dependencies.teerex-primitives] default-features = false @@ -21,6 +20,5 @@ path = "../../primitives/teerex" [features] default = ['std'] std = [ - "log/std", "teerex-primitives/std", ] diff --git a/pallets/vc-management/Cargo.toml b/pallets/vc-management/Cargo.toml index 3549ab21e8..f5fd7ebd45 100644 --- a/pallets/vc-management/Cargo.toml +++ b/pallets/vc-management/Cargo.toml @@ -9,11 +9,9 @@ version = '0.1.0' [dependencies] # third-party dependencies codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } -log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } # primitives -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } @@ -28,7 +26,6 @@ teerex-primitives = { path = "../../primitives/teerex", default-features = false # benchmarking frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false, optional = true } -hex = { version = "0.4", default-features = false } test-utils = { path = "../test-utils", default-features = false, optional = true } [dev-dependencies] @@ -54,7 +51,6 @@ std = [ "sp-runtime/std", "sp-io/std", "sp-core/std", - "sp-arithmetic/std", "frame-support/std", "frame-system/std", "frame-benchmarking?/std", diff --git a/pallets/xcm-asset-manager/Cargo.toml b/pallets/xcm-asset-manager/Cargo.toml index a36c3a6207..b81a027fc6 100644 --- a/pallets/xcm-asset-manager/Cargo.toml +++ b/pallets/xcm-asset-manager/Cargo.toml @@ -6,11 +6,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } -hex-literal = { version = '0.3.4' } -log = { version = "0.4", default-features = false } scale-info = { version = "2.4.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", optional = true, features = ["derive"] } -smallvec = "1.8.0" # Substrate Dependencies ## Substrate Primitive Dependencies @@ -43,7 +39,6 @@ std = [ "codec/std", "orml-traits/std", "scale-info/std", - "serde", "sp-io/std", "sp-runtime/std", "sp-std/std", diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index fdd76b3d3f..f1d69a3943 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -16,7 +16,6 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot- sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } -xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.39", default-features = false } [features] default = ["std"] @@ -28,6 +27,5 @@ std = [ "sp-core/std", "sp-runtime/std", "sp-std/std", - "xcm/std", "ring/std", ] diff --git a/primitives/sidechain/Cargo.toml b/primitives/sidechain/Cargo.toml index f2dfce16fb..03807f9271 100644 --- a/primitives/sidechain/Cargo.toml +++ b/primitives/sidechain/Cargo.toml @@ -15,9 +15,6 @@ serde = { version = "1.0", default-features = false } # substrate dependencies sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [features] @@ -31,7 +28,4 @@ std = [ "serde/std", # substrate "sp-core/std", - "sp-io/std", - "sp-runtime/std", - "sp-std/std", ] diff --git a/primitives/teeracle/Cargo.toml b/primitives/teeracle/Cargo.toml index b4569fa60f..83b443bf43 100644 --- a/primitives/teeracle/Cargo.toml +++ b/primitives/teeracle/Cargo.toml @@ -14,14 +14,10 @@ common-primitives = { path = "../common", default-features = false } # encointer substrate-fixed = { tag = "v0.5.9", default-features = false, git = "https://github.com/encointer/substrate-fixed.git" } -# substrate -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } - [features] default = ["std"] std = [ "common-primitives/std", "substrate-fixed/std", - "sp-std/std", ] diff --git a/primitives/teerex/Cargo.toml b/primitives/teerex/Cargo.toml index 5cdb6f713a..7d4a79b35c 100644 --- a/primitives/teerex/Cargo.toml +++ b/primitives/teerex/Cargo.toml @@ -9,13 +9,10 @@ version = "0.1.0" [dependencies] codec = { version = "3.0.0", default-features = false, features = ["derive"], package = "parity-scale-codec" } -common-primitives = { path = "../common", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", default-features = false } # substrate dependencies sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-io = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [dev-dependencies] @@ -25,11 +22,8 @@ hex-literal = "0.4.1" default = ["std"] std = [ "codec/std", - "common-primitives/std", "scale-info/std", - "serde/std", # substrate "sp-core/std", - "sp-io/std", "sp-std/std", ] diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 479f65d7ce..3a55af4291 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -17,7 +17,6 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39" } ## Substrate FRAME Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false, optional = true } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.39" } @@ -49,7 +48,6 @@ pallet-asset-manager = { path = "../../pallets/xcm-asset-manager", default-featu pallet-extrinsic-filter = { path = "../../pallets/extrinsic-filter", default-features = false } pallet-group = { path = "../../pallets/group", default-features = false } pallet-teerex = { path = "../../pallets/teerex", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39", default-features = false } teerex-primitives = { path = "../../primitives/teerex", default-features = false, optional = true } # Dev dependencies @@ -76,7 +74,6 @@ std = [ "sp-io/std", "sp-std/std", "sp-runtime/std", - "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "pallet-authorship/std", @@ -85,7 +82,6 @@ std = [ "pallet-group/std", "pallet-multisig/std", "pallet-membership/std", - "pallet-timestamp/std", "pallet-transaction-payment/std", "pallet-treasury/std", "pallet-vesting/std", @@ -109,7 +105,6 @@ runtime-benchmarks = [ "sp-runtime/runtime-benchmarks", "teerex-primitives", "test-utils", - "frame-benchmarking/runtime-benchmarks", "frame-system/runtime-benchmarks", "frame-support/runtime-benchmarks", ] diff --git a/runtime/litentry/Cargo.toml b/runtime/litentry/Cargo.toml index 0c2e7b99c0..409c310c13 100644 --- a/runtime/litentry/Cargo.toml +++ b/runtime/litentry/Cargo.toml @@ -9,8 +9,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = hex-literal = { version = '0.4.1' } log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", optional = true, features = ["derive"] } -smallvec = "1.9.0" core-primitives = { path = "../../primitives/core", default-features = false } @@ -144,7 +142,6 @@ runtime-benchmarks = [ std = [ "codec/std", "log/std", - "serde", "sp-api/std", "sp-block-builder/std", "sp-consensus-aura/std", diff --git a/runtime/litmus/Cargo.toml b/runtime/litmus/Cargo.toml index aa5b360fa0..476e9442e3 100644 --- a/runtime/litmus/Cargo.toml +++ b/runtime/litmus/Cargo.toml @@ -9,8 +9,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = hex-literal = { version = '0.4.1' } log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", optional = true, features = ["derive"] } -smallvec = "1.9.0" core-primitives = { path = "../../primitives/core", default-features = false } @@ -158,7 +156,6 @@ std = [ "codec/std", "log/std", "scale-info/std", - "serde", "sp-api/std", "sp-block-builder/std", "sp-consensus-aura/std", diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index d8efb2b2ba..bcc65b3d06 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -9,8 +9,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = hex-literal = { version = '0.4.1' } log = { version = "0.4", default-features = false } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -serde = { version = "1.0", optional = true, features = ["derive"] } -smallvec = "1.9.0" core-primitives = { path = "../../primitives/core", default-features = false } @@ -176,7 +174,6 @@ std = [ "codec/std", "log/std", "scale-info/std", - "serde", "sp-api/std", "sp-block-builder/std", "sp-consensus-aura/std", diff --git a/tee-worker/Cargo.lock b/tee-worker/Cargo.lock index 88f8e1201c..42209161ac 100644 --- a/tee-worker/Cargo.lock +++ b/tee-worker/Cargo.lock @@ -812,16 +812,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "block-buffer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" -dependencies = [ - "arrayref", - "byte-tools 0.2.0", -] - [[package]] name = "block-buffer" version = "0.7.3" @@ -829,7 +819,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" dependencies = [ "block-padding 0.1.5", - "byte-tools 0.3.1", + "byte-tools", "byteorder 1.4.3", "generic-array 0.12.4", ] @@ -868,7 +858,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" dependencies = [ - "byte-tools 0.3.1", + "byte-tools", ] [[package]] @@ -935,12 +925,6 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" -[[package]] -name = "byte-tools" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" - [[package]] name = "byte-tools" version = "0.3.1" @@ -1451,7 +1435,6 @@ dependencies = [ "sp-std 5.0.0", "strum 0.25.0", "strum_macros 0.25.2", - "xcm", ] [[package]] @@ -2215,7 +2198,7 @@ dependencies = [ "convert_case", "proc-macro2", "quote", - "rustc_version 0.4.0", + "rustc_version", "syn 1.0.109", ] @@ -2225,15 +2208,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" -[[package]] -name = "digest" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" -dependencies = [ - "generic-array 0.9.1", -] - [[package]] name = "digest" version = "0.8.1" @@ -3628,15 +3602,6 @@ dependencies = [ "byteorder 1.4.3", ] -[[package]] -name = "generic-array" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d00328cedcac5e81c683e5620ca6a30756fc23027ebf9bff405c0e8da1fbb7e" -dependencies = [ - "typenum 1.16.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "generic-array" version = "0.12.4" @@ -4492,7 +4457,6 @@ dependencies = [ "log 0.4.19", "parity-scale-codec", "serde 1.0.175", - "serde_json 1.0.103", "sgx_tstd", "substrate-fixed 0.5.9 (git+https://github.com/encointer/substrate-fixed?tag=v0.5.9)", "thiserror 1.0.44", @@ -4505,39 +4469,24 @@ dependencies = [ name = "ita-sgx-runtime" version = "0.9.0" dependencies = [ - "frame-benchmarking", "frame-executive", "frame-support", "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", "hex-literal 0.3.4", "itp-sgx-runtime-primitives", - "litentry-primitives", - "pallet-aura", "pallet-balances", "pallet-evm 6.0.0-dev (git+https://github.com/integritee-network/frontier.git?branch=polkadot-v0.9.39)", - "pallet-grandpa", "pallet-identity-management-tee", - "pallet-insecure-randomness-collective-flip", "pallet-parentchain", "pallet-sudo", "pallet-timestamp", "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "scale-info", - "serde 1.0.175", "sp-api", - "sp-block-builder", - "sp-consensus-aura", "sp-core", - "sp-inherents", - "sp-offchain", "sp-runtime", - "sp-session", "sp-std 5.0.0", - "sp-transaction-pool", "sp-version", ] @@ -4559,7 +4508,6 @@ dependencies = [ "itp-storage", "itp-types", "itp-utils", - "lc-scheduled-enclave", "lc-stf-task-sender", "litentry-primitives", "log 0.4.19", @@ -4567,11 +4515,9 @@ dependencies = [ "pallet-parentchain", "pallet-sudo", "parity-scale-codec", - "ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)", "rlp", "sgx_tstd", "sha3", - "sp-application-crypto", "sp-core", "sp-io 7.0.0", "sp-keyring", @@ -4592,7 +4538,6 @@ dependencies = [ "parity-scale-codec", "serde_json 1.0.103", "sgx_tstd", - "sgx_types", "sp-runtime", "thiserror 1.0.44", "thiserror 1.0.9", @@ -4613,13 +4558,10 @@ dependencies = [ "itp-test", "itp-top-pool-author", "itp-types", - "litentry-primitives", "log 0.4.19", "parity-scale-codec", "sgx_tstd", - "sgx_types", "sp-core", - "sp-io 7.0.0", "sp-runtime", "thiserror 1.0.44", "thiserror 1.0.9", @@ -4644,11 +4586,9 @@ version = "0.9.0" dependencies = [ "itc-parentchain-block-importer", "itp-import-queue", - "itp-types", "log 0.4.19", "sgx_tstd", "sgx_types", - "sp-runtime", "thiserror 1.0.44", "thiserror 1.0.9", ] @@ -4661,7 +4601,6 @@ dependencies = [ "itc-parentchain-indirect-calls-executor", "itc-parentchain-light-client", "itp-extrinsics-factory", - "itp-settings", "itp-stf-executor", "itp-types", "log 0.4.19", @@ -4683,14 +4622,10 @@ dependencies = [ "env_logger 0.9.3", "futures 0.3.28", "futures 0.3.8", - "hex 0.4.3", - "ita-sgx-runtime", "ita-stf", "itc-parentchain-test", "itp-api-client-types", - "itp-component-container", "itp-node-api", - "itp-ocall-api", "itp-sgx-crypto", "itp-stf-executor", "itp-stf-primitives", @@ -4701,8 +4636,6 @@ dependencies = [ "lc-scheduled-enclave", "litentry-primitives", "log 0.4.19", - "pallet-identity-management", - "pallet-vc-management", "parity-scale-codec", "sgx_tstd", "sgx_types", @@ -4718,10 +4651,7 @@ dependencies = [ name = "itc-parentchain-light-client" version = "0.9.0" dependencies = [ - "derive_more", "finality-grandpa", - "frame-system", - "hash-db", "itc-parentchain-test", "itp-ocall-api", "itp-sgx-io", @@ -4729,17 +4659,12 @@ dependencies = [ "itp-storage", "itp-test", "itp-types", - "lazy_static", "log 0.4.19", - "num-traits 0.2.16", "parity-scale-codec", "sgx_tstd", "sgx_types", - "sp-application-crypto", - "sp-core", "sp-finality-grandpa", "sp-runtime", - "sp-trie", "thiserror 1.0.44", "thiserror 1.0.9", ] @@ -4748,17 +4673,8 @@ dependencies = [ name = "itc-parentchain-test" version = "0.9.0" dependencies = [ - "frame-support", - "frame-system", "itp-types", - "log 0.4.19", - "parity-scale-codec", - "scale-info", - "serde 1.0.175", - "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-runtime", - "sp-std 5.0.0", ] [[package]] @@ -4774,7 +4690,6 @@ dependencies = [ "serde 1.0.175", "serde_json 1.0.103", "sgx_tstd", - "sgx_types", "thiserror 1.0.44", "thiserror 1.0.9", "url 2.1.1", @@ -4801,7 +4716,6 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rustls 0.19.1", - "serde_derive 1.0.175", "serde_json 1.0.103", "sgx_crypto_helper", "teerex-primitives", @@ -4827,7 +4741,6 @@ dependencies = [ "jsonrpsee 0.2.0", "log 0.4.19", "parity-scale-codec", - "serde_json 1.0.103", "sp-core", "tokio", ] @@ -4846,9 +4759,7 @@ dependencies = [ "rcgen 0.9.2", "rustls 0.19.0 (git+https://github.com/mesalock-linux/rustls?branch=mesalock_sgx)", "rustls 0.19.1", - "sgx_crypto_helper", "sgx_tstd", - "sgx_types", "sp-core", "thiserror 1.0.44", "thiserror 1.0.9", @@ -4900,12 +4811,10 @@ dependencies = [ "hex 0.4.3", "itp-api-client-types", "itp-types", - "parity-scale-codec", "sp-core", "sp-finality-grandpa", "sp-runtime", "substrate-api-client", - "thiserror 1.0.44", ] [[package]] @@ -4937,7 +4846,6 @@ dependencies = [ "itp-sgx-crypto", "itp-sgx-io", "itp-time-utils", - "itp-types", "log 0.4.19", "num-bigint 0.2.5", "parity-scale-codec", @@ -4951,7 +4859,6 @@ dependencies = [ "sgx_tstd", "sgx_types", "sp-core", - "sp-runtime", "thiserror 1.0.44", "thiserror 1.0.9", "webpki 0.21.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4981,7 +4888,6 @@ dependencies = [ "itp-storage", "itp-types", "lc-data-providers", - "litentry-primitives", "log 0.4.19", "parity-scale-codec", "serde_json 1.0.103", @@ -4989,7 +4895,6 @@ dependencies = [ "sgx_types", "sgx_urts", "sp-core", - "sp-finality-grandpa", "sp-runtime", "teerex-primitives", "thiserror 1.0.44", @@ -5159,14 +5064,12 @@ version = "0.9.0" dependencies = [ "aes 0.6.0", "derive_more", - "itp-settings", "itp-sgx-io", "itp-sgx-temp-dir", "log 0.4.19", "ofb", "parity-scale-codec", "serde 1.0.118 (git+https://github.com/mesalock-linux/serde-sgx?tag=sgx_1.1.3)", - "serde 1.0.175", "serde_json 1.0.103", "serde_json 1.0.60 (git+https://github.com/mesalock-linux/serde-json-sgx?tag=sgx_1.1.3)", "sgx_crypto_helper", @@ -5233,7 +5136,6 @@ dependencies = [ "itp-stf-primitives", "itp-stf-state-handler", "itp-stf-state-observer", - "itp-storage", "itp-test", "itp-time-utils", "itp-top-pool-author", @@ -5241,7 +5143,6 @@ dependencies = [ "litentry-primitives", "log 0.4.19", "parity-scale-codec", - "sgx_crypto_helper", "sgx_tstd", "sgx_types", "sp-core", @@ -5285,12 +5186,10 @@ dependencies = [ "itp-stf-state-observer", "itp-time-utils", "itp-types", - "lazy_static", "log 0.4.19", "parity-scale-codec", "rust-base58 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "rust-base58 0.0.4 (git+https://github.com/mesalock-linux/rust-base58-sgx?rev=sgx_1.1.3)", - "sgx_tcrypto", "sgx_tstd", "sgx_types", "sp-core", @@ -5304,7 +5203,6 @@ version = "0.9.0" dependencies = [ "itp-types", "log 0.4.19", - "parity-scale-codec", "sgx_tstd", "thiserror 1.0.44", "thiserror 1.0.9", @@ -5342,7 +5240,6 @@ dependencies = [ name = "itp-test" version = "0.9.0" dependencies = [ - "derive_more", "hex 0.4.3", "ita-stf", "itp-ocall-api", @@ -5394,11 +5291,9 @@ dependencies = [ "parity-util-mem", "serde 1.0.175", "sgx_tstd", - "sgx_types", "sp-application-crypto", "sp-core", "sp-runtime", - "thiserror 1.0.44", "thiserror 1.0.9", ] @@ -5417,7 +5312,6 @@ dependencies = [ "itp-test", "itp-top-pool", "itp-types", - "itp-utils", "jsonrpc-core 18.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core 18.0.0 (git+https://github.com/scs/jsonrpc?branch=no_std_v18)", "litentry-primitives", @@ -5425,11 +5319,9 @@ dependencies = [ "parity-scale-codec", "sgx_crypto_helper", "sgx_tstd", - "sgx_types", "sp-core", "sp-keyring", "sp-runtime", - "thiserror 1.0.44", "thiserror 1.0.9", ] @@ -5437,15 +5329,11 @@ dependencies = [ name = "itp-types" version = "0.9.0" dependencies = [ - "chrono 0.4.26", "frame-system", "itp-sgx-runtime-primitives", "litentry-primitives", "pallet-balances", "parity-scale-codec", - "primitive-types", - "serde 1.0.175", - "serde_json 1.0.103", "sp-core", "sp-runtime", "sp-std 5.0.0", @@ -5474,7 +5362,6 @@ dependencies = [ "itp-sgx-crypto", "itp-sgx-externalities", "itp-stf-executor", - "itp-stf-interface", "itp-time-utils", "itp-top-pool-author", "itp-types", @@ -5516,7 +5403,6 @@ version = "0.9.0" dependencies = [ "env_logger 0.9.3", "finality-grandpa", - "frame-support", "ita-stf", "itc-parentchain-block-import-dispatcher", "itc-parentchain-test", @@ -5532,7 +5418,6 @@ dependencies = [ "itp-time-utils", "itp-top-pool-author", "itp-types", - "itp-utils", "its-block-composer", "its-block-verification", "its-consensus-common", @@ -5586,13 +5471,11 @@ name = "its-consensus-slots" version = "0.9.0" dependencies = [ "derive_more", - "futures 0.3.28", "futures-timer", "hex 0.4.3", "itc-parentchain-test", "itp-settings", "itp-sgx-externalities", - "itp-sgx-io", "itp-stf-state-handler", "itp-test", "itp-time-utils", @@ -5642,7 +5525,6 @@ dependencies = [ "scale-info", "serde 1.0.175", "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-runtime", "sp-std 5.0.0", ] @@ -5664,7 +5546,6 @@ dependencies = [ "rust-base58 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "rust-base58 0.0.4 (git+https://github.com/mesalock-linux/rust-base58-sgx?rev=sgx_1.1.3)", "sgx_tstd", - "sgx_types", "sp-core", ] @@ -5692,12 +5573,10 @@ dependencies = [ "its-primitives", "log 0.4.19", "parity-scale-codec", - "serde 1.0.175", "sgx_tstd", "sp-core", "sp-io 7.0.0", "sp-runtime", - "sp-std 5.0.0", "thiserror 1.0.44", "thiserror 1.0.9", ] @@ -5728,7 +5607,6 @@ version = "0.9.0" dependencies = [ "itp-types", "its-primitives", - "parity-scale-codec", "sgx_tstd", "sp-core", ] @@ -5741,7 +5619,6 @@ dependencies = [ "frame-support", "itc-parentchain-test", "itp-ocall-api", - "itp-storage", "itp-teerex-storage", "itp-test", "itp-types", @@ -5749,7 +5626,6 @@ dependencies = [ "sp-core", "sp-runtime", "sp-std 5.0.0", - "thiserror 1.0.44", ] [[package]] @@ -6132,23 +6008,15 @@ version = "0.1.0" dependencies = [ "blake2-rfc", "frame-support", - "futures 0.3.28", - "futures 0.3.8", "hex 0.4.0", "hex 0.4.3", "http 0.2.1", "http 0.2.9", "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", "http_req 0.8.1 (git+https://github.com/integritee-network/http_req)", - "ita-stf", "itc-rest-client", "itp-ocall-api", - "itp-sgx-crypto", - "itp-sgx-externalities", - "itp-stf-executor", "itp-stf-primitives", - "itp-storage", - "itp-top-pool-author", "itp-types", "itp-utils", "lc-credentials", @@ -6162,15 +6030,9 @@ dependencies = [ "serde 1.0.175", "serde_json 1.0.103", "sgx_tstd", - "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", - "sp-runtime", - "sp-std 5.0.0", "ss58-registry", - "thiserror 1.0.44", "thiserror 1.0.9", "url 2.1.1", - "url 2.4.0", ] [[package]] @@ -6179,22 +6041,12 @@ version = "0.1.0" dependencies = [ "chrono 0.4.11", "chrono 0.4.26", - "futures 0.3.28", - "futures 0.3.8", "hex 0.4.0", "hex 0.4.3", - "http 0.2.1", - "http 0.2.9", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req)", - "itp-ocall-api", - "itp-sgx-crypto", - "itp-sgx-externalities", "itp-stf-primitives", "itp-time-utils", "itp-types", "itp-utils", - "lc-data-providers", "litentry-primitives", "log 0.4.19", "parity-scale-codec", @@ -6208,12 +6060,8 @@ dependencies = [ "serde_json 1.0.60 (git+https://github.com/mesalock-linux/serde-json-sgx?tag=sgx_1.1.3)", "sgx_tstd", "sp-core", - "sp-runtime", - "sp-std 5.0.0", "thiserror 1.0.44", "thiserror 1.0.9", - "url 2.1.1", - "url 2.4.0", ] [[package]] @@ -6222,7 +6070,6 @@ version = "0.1.0" dependencies = [ "env_logger 0.10.0", "hex 0.4.0", - "hex 0.4.3", "http 0.2.1", "http 0.2.9", "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", @@ -6248,38 +6095,19 @@ name = "lc-identity-verification" version = "0.1.0" dependencies = [ "frame-support", - "futures 0.3.28", "futures 0.3.8", "hex 0.4.0", "hex 0.4.3", "http 0.2.1", - "http 0.2.9", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", "http_req 0.8.1 (git+https://github.com/integritee-network/http_req)", - "ita-stf", - "itc-rest-client", - "itp-ocall-api", "itp-sgx-crypto", - "itp-sgx-externalities", - "itp-storage", - "itp-types", - "itp-utils", - "lazy_static", "lc-data-providers", "lc-stf-task-sender", "litentry-primitives", "log 0.4.19", - "parity-scale-codec", - "serde 1.0.175", - "serde_json 1.0.103", "sgx_tstd", - "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", - "sp-std 5.0.0", - "thiserror 1.0.44", "thiserror 1.0.9", "url 2.1.1", - "url 2.4.0", ] [[package]] @@ -6288,11 +6116,9 @@ version = "0.1.0" dependencies = [ "hex 0.4.3", "ita-stf", - "lazy_static", "lc-data-providers", "litentry-primitives", "log 0.4.19", - "parity-scale-codec", "serde_json 1.0.103", "sp-core", "tokio", @@ -6303,16 +6129,13 @@ dependencies = [ name = "lc-scheduled-enclave" version = "0.8.0" dependencies = [ - "itp-component-container", "itp-settings", "itp-sgx-io", "itp-types", "lazy_static", - "litentry-primitives", "log 0.4.19", "parity-scale-codec", "sgx_tstd", - "sgx_types", "sp-std 5.0.0", "thiserror 1.0.44", "thiserror 1.0.9", @@ -6326,28 +6149,16 @@ dependencies = [ "futures 0.3.28", "futures 0.3.8", "hex 0.4.0", - "hex 0.4.3", - "http 0.2.1", - "http 0.2.9", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req)", "ita-sgx-runtime", "ita-stf", - "itc-rest-client", "itp-enclave-metrics", - "itp-extrinsics-factory", - "itp-node-api", "itp-ocall-api", "itp-sgx-crypto", "itp-sgx-externalities", "itp-stf-executor", "itp-stf-state-handler", - "itp-stf-state-observer", - "itp-storage", "itp-top-pool-author", "itp-types", - "itp-utils", - "lazy_static", "lc-assertion-build", "lc-credentials", "lc-data-providers", @@ -6356,39 +6167,25 @@ dependencies = [ "litentry-primitives", "log 0.4.19", "parity-scale-codec", - "serde 1.0.175", - "serde_json 1.0.103", "sgx_tstd", "sp-core", - "sp-std 5.0.0", "thiserror 1.0.44", "thiserror 1.0.9", "threadpool 1.8.0", "threadpool 1.8.1", "url 2.1.1", - "url 2.4.0", ] [[package]] name = "lc-stf-task-sender" version = "0.1.0" dependencies = [ - "http 0.2.1", - "http 0.2.9", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req?branch=master)", - "http_req 0.8.1 (git+https://github.com/integritee-network/http_req)", - "itc-rest-client", - "itp-ocall-api", - "itp-sgx-crypto", "itp-stf-primitives", "itp-types", - "itp-utils", "lazy_static", "litentry-primitives", "log 0.4.19", "parity-scale-codec", - "serde 1.0.175", - "serde_json 1.0.103", "sgx_tstd", "sp-runtime", "sp-std 5.0.0", @@ -7018,19 +6815,16 @@ version = "0.9.0" dependencies = [ "array-bytes 6.1.0", "base58", - "blake2-rfc", "chrono 0.4.26", "clap 3.2.25", "env_logger 0.9.3", "frame-metadata 15.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "frame-system", "hdrhistogram", "hex 0.4.3", "ita-sgx-runtime", "ita-stf", "itc-rpc-client", "itp-node-api", - "itp-node-api-metadata", "itp-rpc", "itp-sgx-crypto", "itp-stf-primitives", @@ -7043,13 +6837,10 @@ dependencies = [ "pallet-evm 6.0.0-dev (git+https://github.com/integritee-network/frontier.git?branch=polkadot-v0.9.39)", "pallet-teerex", "parity-scale-codec", - "primitive-types", "rand 0.8.5", "rayon", "rococo-parachain-runtime", - "sc-keystore", "scale-value", - "serde 1.0.175", "serde_json 1.0.103", "sgx_crypto_helper", "sp-application-crypto", @@ -7061,7 +6852,6 @@ dependencies = [ "substrate-client-keystore", "teerex-primitives", "thiserror 1.0.44", - "ws", ] [[package]] @@ -7076,10 +6866,6 @@ dependencies = [ name = "litentry-primitives" version = "0.1.0" dependencies = [ - "base64 0.13.0 (git+https://github.com/mesalock-linux/rust-base64-sgx?rev=sgx_1.1.3)", - "base64 0.13.1", - "chrono 0.4.11", - "chrono 0.4.26", "core-primitives", "hex 0.4.3", "itp-utils", @@ -7091,7 +6877,6 @@ dependencies = [ "ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)", "scale-info", "serde 1.0.175", - "serde_json 1.0.103", "sgx_tstd", "sp-core", "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", @@ -7113,7 +6898,6 @@ dependencies = [ "dirs", "env_logger 0.9.3", "frame-support", - "frame-system", "futures 0.3.28", "hex 0.4.3", "ipfs-api", @@ -7123,12 +6907,9 @@ dependencies = [ "itc-rest-client", "itc-rpc-client", "itc-rpc-server", - "itp-api-client-types", "itp-enclave-api", "itp-enclave-metrics", "itp-node-api", - "itp-node-api-metadata", - "itp-rpc", "itp-settings", "itp-stf-primitives", "itp-storage", @@ -7163,7 +6944,6 @@ dependencies = [ "sgx_crypto_helper", "sgx_types", "sgx_urts", - "sha2 0.7.1", "sp-core", "sp-finality-grandpa", "sp-keyring", @@ -8551,13 +8331,9 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex-literal 0.3.4", - "log 0.4.19", "orml-traits", "parity-scale-codec", "scale-info", - "serde 1.0.175", - "smallvec 1.11.0", "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-runtime", "sp-std 5.0.0", @@ -8769,7 +8545,6 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex 0.4.3", "pallet-bridge", "pallet-parachain-staking", "parity-scale-codec", @@ -9032,7 +8807,6 @@ dependencies = [ name = "pallet-evm-address" version = "0.1.0" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", @@ -9135,12 +8909,9 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex 0.4.3", - "log 0.4.19", "pallet-teerex", "parity-scale-codec", "scale-info", - "sp-arithmetic", "sp-core", "sp-runtime", "sp-std 5.0.0", @@ -9151,7 +8922,6 @@ dependencies = [ name = "pallet-identity-management-tee" version = "0.1.0" dependencies = [ - "frame-benchmarking", "frame-support", "frame-system", "hex 0.4.3", @@ -9160,9 +8930,6 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "serde 1.0.175", - "serde_derive 1.0.175", - "serde_json 1.0.103", "sp-core", "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-runtime", @@ -9206,20 +8973,6 @@ dependencies = [ "sp-std 5.0.0", ] -[[package]] -name = "pallet-insecure-randomness-collective-flip" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39#8c4b84520cee2d7de53cc33cb67605ce4efefba8" -dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec", - "safe-mix", - "scale-info", - "sp-runtime", - "sp-std 5.0.0", -] - [[package]] name = "pallet-membership" version = "4.0.0-dev" @@ -9342,14 +9095,11 @@ version = "0.9.0" dependencies = [ "frame-support", "frame-system", - "log 0.4.19", "parity-scale-codec", "scale-info", - "serde 1.0.175", "sp-core", "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-runtime", - "sp-std 5.0.0", ] [[package]] @@ -9535,7 +9285,6 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "serde 1.0.175", "sgx-verify", "sp-core", "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", @@ -9666,11 +9415,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "hex 0.4.3", - "log 0.4.19", "parity-scale-codec", "scale-info", - "sp-arithmetic", "sp-core", "sp-runtime", "sp-std 5.0.0", @@ -12118,8 +11864,6 @@ dependencies = [ "polkadot-parachain", "runtime-common", "scale-info", - "serde 1.0.175", - "smallvec 1.11.0", "sp-api", "sp-block-builder", "sp-consensus-aura", @@ -12218,7 +11962,6 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", - "frame-benchmarking", "frame-support", "frame-system", "log 0.4.19", @@ -12234,7 +11977,6 @@ dependencies = [ "pallet-membership", "pallet-multisig", "pallet-teerex", - "pallet-timestamp", "pallet-transaction-payment", "pallet-treasury", "pallet-vesting", @@ -12311,15 +12053,6 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" -[[package]] -name = "rustc_version" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -dependencies = [ - "semver 0.9.0", -] - [[package]] name = "rustc_version" version = "0.4.0" @@ -12505,15 +12238,6 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "077d73db7973cccf63eb4aff1e5a34dc2459baa867512088269ea5f2f4253c90" -[[package]] -name = "safe-mix" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c" -dependencies = [ - "rustc_version 0.2.3", -] - [[package]] name = "safe_arch" version = "0.7.1" @@ -13811,15 +13535,6 @@ dependencies = [ "semver-parser", ] -[[package]] -name = "semver" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -dependencies = [ - "semver-parser", -] - [[package]] name = "semver" version = "1.0.18" @@ -13972,7 +13687,6 @@ dependencies = [ "serde 1.0.175", "serde_json 1.0.103", "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-std 5.0.0", "teerex-primitives", "webpki 0.21.0", @@ -14168,18 +13882,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "sha2" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" -dependencies = [ - "block-buffer 0.3.3", - "byte-tools 0.2.0", - "digest 0.7.6", - "fake-simd", -] - [[package]] name = "sha2" version = "0.8.2" @@ -14249,9 +13951,6 @@ dependencies = [ "scale-info", "serde 1.0.175", "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", - "sp-runtime", - "sp-std 5.0.0", ] [[package]] @@ -14368,7 +14067,7 @@ dependencies = [ "curve25519-dalek 4.0.0-rc.1", "rand_core 0.6.4", "ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc_version 0.4.0", + "rustc_version", "sha2 0.10.7", "subtle", ] @@ -14778,23 +14477,12 @@ dependencies = [ name = "sp-io" version = "7.0.0" dependencies = [ - "environmental 1.1.3", - "futures 0.3.28", - "hash-db", "itp-sgx-externalities", "libsecp256k1", "log 0.4.19", "parity-scale-codec", - "parking_lot 0.12.1", "sgx_tstd", - "sgx_types", "sp-core", - "sp-runtime-interface", - "sp-std 5.0.0", - "sp-tracing", - "sp-wasm-interface", - "tracing", - "tracing-core", ] [[package]] @@ -15576,7 +15264,6 @@ name = "teeracle-primitives" version = "0.1.0" dependencies = [ "common-primitives", - "sp-std 5.0.0", "substrate-fixed 0.5.9 (git+https://github.com/encointer/substrate-fixed?tag=v0.5.9)", ] @@ -15584,12 +15271,9 @@ dependencies = [ name = "teerex-primitives" version = "0.1.0" dependencies = [ - "common-primitives", "parity-scale-codec", "scale-info", - "serde 1.0.175", "sp-core", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate.git?branch=polkadot-v0.9.39)", "sp-std 5.0.0", ] diff --git a/tee-worker/app-libs/oracle/Cargo.toml b/tee-worker/app-libs/oracle/Cargo.toml index 7d8f0b39ea..eb8fa135e2 100644 --- a/tee-worker/app-libs/oracle/Cargo.toml +++ b/tee-worker/app-libs/oracle/Cargo.toml @@ -20,7 +20,6 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = lazy_static = { version = "1.1.0", features = ["spin_no_std"] } log = { version = "0.4", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } -serde_json = { version = "1.0", default-features = false, features = ["alloc"] } substrate-fixed = { default-features = false, git = "https://github.com/encointer/substrate-fixed", tag = "v0.5.9" } # internal dependencies @@ -36,7 +35,6 @@ std = [ "itp-ocall-api/std", "log/std", "serde/std", - "serde_json/std", "substrate-fixed/std", "thiserror", "url", diff --git a/tee-worker/app-libs/sgx-runtime/Cargo.toml b/tee-worker/app-libs/sgx-runtime/Cargo.toml index b605d73c6c..b3afcc2474 100644 --- a/tee-worker/app-libs/sgx-runtime/Cargo.toml +++ b/tee-worker/app-libs/sgx-runtime/Cargo.toml @@ -9,7 +9,6 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] hex-literal = { version = "0.3.4", optional = true } -serde = { version = "1.0", optional = true, features = ["derive"] } # alias "parity-scale-code" to "codec" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.0.1", default-features = false, features = ["derive"] } @@ -18,37 +17,23 @@ scale-info = { version = "2.0.1", default-features = false, features = ["derive" itp-sgx-runtime-primitives = { path = "../../core-primitives/sgx-runtime-primitives", default-features = false } # Substrate dependencies -frame-benchmarking = { optional = true, default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -frame-system-benchmarking = { optional = true, default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -pallet-grandpa = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -pallet-insecure-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-session = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-version = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } # Integritee dependencies pallet-evm = { default-features = false, optional = true, git = "https://github.com/integritee-network/frontier.git", branch = "polkadot-v0.9.39" } # Litentry -litentry-primitives = { path = "../../litentry/primitives", default-features = false } pallet-imt = { package = "pallet-identity-management-tee", path = "../../litentry/pallets/identity-management", default-features = false } pallet-parentchain = { path = "../../../pallets/parentchain", default-features = false } @@ -64,9 +49,7 @@ evm_std = [ ] runtime-benchmarks = [ "hex-literal", - "frame-benchmarking", "frame-support/runtime-benchmarks", - "frame-system-benchmarking", "frame-system/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", @@ -75,7 +58,6 @@ runtime-benchmarks = [ std = [ "codec/std", "scale-info/std", - "serde", "itp-sgx-runtime-primitives/std", "frame-executive/std", "frame-support/std", @@ -87,12 +69,9 @@ std = [ "pallet-parentchain/std", "sp-api/std", "sp-core/std", - "sp-inherents/std", "sp-runtime/std", "sp-std/std", "sp-version/std", # litentry - "sp-consensus-aura/std", "pallet-imt/std", - "pallet-grandpa/std", ] diff --git a/tee-worker/app-libs/stf/Cargo.toml b/tee-worker/app-libs/stf/Cargo.toml index e2df83738d..0ad2839d75 100644 --- a/tee-worker/app-libs/stf/Cargo.toml +++ b/tee-worker/app-libs/stf/Cargo.toml @@ -34,16 +34,13 @@ frame-support = { default-features = false, git = "https://github.com/paritytech frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-application-crypto = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } # litentry -lc-scheduled-enclave = { path = "../../litentry/core/scheduled-enclave", default-features = false } lc-stf-task-sender = { path = "../../litentry/core/stf-task/sender", default-features = false } litentry-primitives = { path = "../../litentry/primitives", default-features = false } pallet-parentchain = { path = "../../../pallets/parentchain", default-features = false } -ring = { version = "0.16.20", default-features = false } [dev-dependencies] sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } @@ -61,14 +58,12 @@ sgx = [ "itp-node-api-metadata-provider/sgx", # litentry "litentry-primitives/sgx", - "lc-scheduled-enclave/sgx", "lc-stf-task-sender/sgx", ] std = [ # crates.io "codec/std", "log/std", - "rlp/std", # local "ita-sgx-runtime/std", "itp-hashing/std", @@ -86,7 +81,6 @@ std = [ "pallet-sudo/std", "frame-system/std", "frame-support/std", - "sp-application-crypto/std", "sp-runtime/std", "pallet-parentchain/std", "sp-io/std", @@ -96,7 +90,6 @@ std = [ "ita-sgx-runtime/std", "itp-node-api/std", "litentry-primitives/std", - "lc-scheduled-enclave/std", "lc-stf-task-sender/std", ] test = [] diff --git a/tee-worker/cli/Cargo.toml b/tee-worker/cli/Cargo.toml index afe468f444..da5b7d86cd 100644 --- a/tee-worker/cli/Cargo.toml +++ b/tee-worker/cli/Cargo.toml @@ -7,7 +7,6 @@ edition = "2021" [dependencies] array-bytes = { version = "6.0.0" } base58 = "0.2" -blake2-rfc = { version = "0.2.18" } chrono = "*" clap = { version = "3.1.6", features = ["derive"] } codec = { version = "3.0.0", package = "parity-scale-codec", features = ["derive"] } @@ -15,14 +14,11 @@ env_logger = "0.9" hdrhistogram = "7.5.0" hex = "0.4.2" log = "0.4" -primitive-types = { version = "0.12.1", features = ["codec"] } rand = "0.8.5" rayon = "1.5.1" -serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sgx_crypto_helper = { branch = "master", git = "https://github.com/apache/teaclave-sgx-sdk.git" } thiserror = "1.0" -ws = { version = "0.9.1", features = ["ssl"] } # scs / integritee pallet-evm = { optional = true, git = "https://github.com/integritee-network/frontier.git", branch = "polkadot-v0.9.39" } @@ -31,9 +27,7 @@ substrate-api-client = { default-features = false, features = ["std", "ws-client substrate-client-keystore = { git = "https://github.com/scs/substrate-api-client.git", branch = "polkadot-v0.9.39" } # substrate dependencies -frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sc-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-application-crypto = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } @@ -53,7 +47,6 @@ itp-utils = { path = "../core-primitives/utils" } # litentry frame-metadata = "15.0.0" ita-sgx-runtime = { path = "../app-libs/sgx-runtime" } -itp-node-api-metadata = { path = "../core-primitives/node-api/metadata" } litentry-primitives = { path = "../litentry/primitives" } my-node-runtime = { package = "rococo-parachain-runtime", path = "../../runtime/rococo" } pallet-teerex = { path = "../../pallets/teerex", default-features = false } diff --git a/tee-worker/core-primitives/attestation-handler/Cargo.toml b/tee-worker/core-primitives/attestation-handler/Cargo.toml index 13605a9194..c1d516514a 100644 --- a/tee-worker/core-primitives/attestation-handler/Cargo.toml +++ b/tee-worker/core-primitives/attestation-handler/Cargo.toml @@ -45,14 +45,12 @@ itp-settings = { path = "../settings" } itp-sgx-crypto = { path = "../sgx/crypto", default-features = false } itp-sgx-io = { path = "../sgx/io", default-features = false } itp-time-utils = { path = "../time-utils", default-features = false } -itp-types = { path = "../types", default-features = false } # integritee httparse = { default-features = false, git = "https://github.com/integritee-network/httparse-sgx", branch = "sgx-experimental" } # substrate deps sp-core = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [features] default = ["std"] @@ -74,10 +72,8 @@ std = [ "itp-ocall-api/std", "itp-sgx-io/std", "itp-sgx-crypto/std", - "itp-types/std", # substrate "sp-core/std", - "sp-runtime/std", # integritee "httparse/std", ] diff --git a/tee-worker/core-primitives/enclave-api/Cargo.toml b/tee-worker/core-primitives/enclave-api/Cargo.toml index e779e0d148..24cb691a89 100644 --- a/tee-worker/core-primitives/enclave-api/Cargo.toml +++ b/tee-worker/core-primitives/enclave-api/Cargo.toml @@ -17,7 +17,6 @@ sgx_urts = { branch = "master", git = "https://github.com/apache/teaclave-sgx-sd frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } itc-parentchain = { path = "../../core/parentchain/parentchain-crate" } @@ -28,5 +27,4 @@ itp-types = { path = "../types" } # litentry lc-data-providers = { path = "../../litentry/core/data-providers" } -litentry-primitives = { path = "../../litentry/primitives" } teerex-primitives = { path = "../../../primitives/teerex", default-features = false } diff --git a/tee-worker/core-primitives/node-api/api-client-extensions/Cargo.toml b/tee-worker/core-primitives/node-api/api-client-extensions/Cargo.toml index d0d71f6149..cbb9f1b6a3 100644 --- a/tee-worker/core-primitives/node-api/api-client-extensions/Cargo.toml +++ b/tee-worker/core-primitives/node-api/api-client-extensions/Cargo.toml @@ -5,9 +5,6 @@ authors = ['Trust Computing GmbH ', 'Integritee AG