From 29ce15032cc343653cce4328cc2b07592b2bac18 Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Tue, 31 Oct 2023 08:13:10 +0200 Subject: [PATCH] [skip ci] Clean up old patches --- ...01-Make-near-test-contracts-optional.patch | 258 ----------------- ...01-Make-near-test-contracts-optional.patch | 261 ------------------ ...01-Make-near-test-contracts-optional.patch | 261 ------------------ ...01-Make-near-test-contracts-optional.patch | 261 ------------------ ...01-Make-near-test-contracts-optional.patch | 261 ------------------ 5 files changed, 1302 deletions(-) delete mode 100644 patches/1.31.0/0001-Make-near-test-contracts-optional.patch delete mode 100644 patches/1.32.0/0001-Make-near-test-contracts-optional.patch delete mode 100644 patches/1.34.0/0001-Make-near-test-contracts-optional.patch delete mode 100644 patches/1.35.0-rc.1/0001-Make-near-test-contracts-optional.patch delete mode 100644 patches/1.35.0/0001-Make-near-test-contracts-optional.patch diff --git a/patches/1.31.0/0001-Make-near-test-contracts-optional.patch b/patches/1.31.0/0001-Make-near-test-contracts-optional.patch deleted file mode 100644 index 7fee1ea..0000000 --- a/patches/1.31.0/0001-Make-near-test-contracts-optional.patch +++ /dev/null @@ -1,258 +0,0 @@ -From eda8a8cd5b1d80c49b4ad06ec5880acc8c6c8485 Mon Sep 17 00:00:00 2001 -From: Mark Vainomaa -Date: Tue, 3 Jan 2023 15:17:05 +0200 -Subject: [PATCH] Make near-test-contracts optional - ---- - Cargo.lock | 22 --------------------- - genesis-tools/genesis-populate/Cargo.toml | 2 +- - integration-tests/Cargo.toml | 2 +- - runtime/near-vm-runner/Cargo.toml | 2 +- - runtime/near-vm-runner/fuzz/Cargo.toml | 2 +- - runtime/runtime-params-estimator/Cargo.toml | 4 ++-- - runtime/runtime/Cargo.toml | 2 +- - test-utils/runtime-tester/Cargo.toml | 2 +- - test-utils/testlib/Cargo.toml | 2 +- - tools/amend-genesis/Cargo.toml | 2 +- - tools/state-viewer/Cargo.toml | 2 +- - 11 files changed, 11 insertions(+), 33 deletions(-) - -diff --git a/Cargo.lock b/Cargo.lock -index 217d17601..864a94681 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -1946,7 +1946,6 @@ dependencies = [ - "near-crypto", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "tempfile", - ] -@@ -2330,7 +2329,6 @@ dependencies = [ - "near-stdx", - "near-store", - "near-telemetry", -- "near-test-contracts", - "near-vm-errors", - "near-vm-runner", - "nearcore", -@@ -2810,7 +2808,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "num-rational", -@@ -3550,18 +3547,6 @@ dependencies = [ - "tracing", - ] - --[[package]] --name = "near-test-contracts" --version = "0.0.0" --dependencies = [ -- "arbitrary", -- "once_cell", -- "rand 0.8.5", -- "wasm-encoder", -- "wasm-smith", -- "wat", --] -- - [[package]] - name = "near-vm-errors" - version = "0.0.0" -@@ -3615,7 +3600,6 @@ dependencies = [ - "near-cache", - "near-primitives", - "near-stable-hasher", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "once_cell", -@@ -3647,7 +3631,6 @@ dependencies = [ - "arbitrary", - "libfuzzer-sys", - "near-primitives", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -3783,7 +3766,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -4908,7 +4890,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-logic", - "near-vm-runner", - "nearcore", -@@ -4940,7 +4921,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "serde", - "serde_json", -@@ -5446,7 +5426,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "once_cell", -@@ -5632,7 +5611,6 @@ dependencies = [ - "near-chain-configs", - "near-crypto", - "near-primitives", -- "near-test-contracts", - "once_cell", - ] - -diff --git a/genesis-tools/genesis-populate/Cargo.toml b/genesis-tools/genesis-populate/Cargo.toml -index 2f625d0f4..e7449c7a4 100644 ---- a/genesis-tools/genesis-populate/Cargo.toml -+++ b/genesis-tools/genesis-populate/Cargo.toml -@@ -17,4 +17,4 @@ near-crypto = { path = "../../core/crypto" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } - near-chain = { path = "../../chain/chain" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } -diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml -index 3b5fd21bd..f3a79b6fa 100644 ---- a/integration-tests/Cargo.toml -+++ b/integration-tests/Cargo.toml -@@ -45,7 +45,7 @@ near-primitives-core = { path = "../core/primitives-core" } - near-store = { path = "../core/store" } - near-o11y = { path = "../core/o11y" } - near-telemetry = { path = "../chain/telemetry" } --near-test-contracts = { path = "../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../runtime/near-test-contracts" } - near-performance-metrics = { path = "../utils/near-performance-metrics" } - near-vm-errors = { path = "../runtime/near-vm-errors" } - near-vm-runner = { path = "../runtime/near-vm-runner" } -diff --git a/runtime/near-vm-runner/Cargo.toml b/runtime/near-vm-runner/Cargo.toml -index 8dd600167..813658e83 100644 ---- a/runtime/near-vm-runner/Cargo.toml -+++ b/runtime/near-vm-runner/Cargo.toml -@@ -62,7 +62,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - wat.workspace = true - --near-test-contracts = { path = "../near-test-contracts" } -+#near-test-contracts = { path = "../near-test-contracts" } - - [features] - # all vms enabled for now -diff --git a/runtime/near-vm-runner/fuzz/Cargo.toml b/runtime/near-vm-runner/fuzz/Cargo.toml -index 7af395066..ab45749db 100644 ---- a/runtime/near-vm-runner/fuzz/Cargo.toml -+++ b/runtime/near-vm-runner/fuzz/Cargo.toml -@@ -15,7 +15,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - - near-primitives = { path = "../../../core/primitives" } --near-test-contracts = { path = "../../near-test-contracts" } -+#near-test-contracts = { path = "../../near-test-contracts" } - near-vm-errors = { path = "../../near-vm-errors" } - near-vm-logic = { path = "../../near-vm-logic", default-features = false } - near-vm-runner = { path = ".." } -diff --git a/runtime/runtime-params-estimator/Cargo.toml b/runtime/runtime-params-estimator/Cargo.toml -index 368ec24d8..c66212aa4 100644 ---- a/runtime/runtime-params-estimator/Cargo.toml -+++ b/runtime/runtime-params-estimator/Cargo.toml -@@ -39,7 +39,7 @@ near-crypto = { path = "../../core/crypto" } - near-o11y = { path = "../../core/o11y" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../near-test-contracts" } -+#near-test-contracts = { path = "../near-test-contracts" } - near-vm-logic = {path = "../../runtime/near-vm-logic" } - near-vm-runner = {path = "../../runtime/near-vm-runner" } - nearcore = { path = "../../nearcore" } -@@ -67,7 +67,7 @@ nightly = [ - ] - nightly_protocol = [ - "near-primitives/nightly_protocol", -- "near-test-contracts/nightly", -+ #"near-test-contracts/nightly", - "protocol_feature_ed25519_verify" - ] - sandbox = ["node-runtime/sandbox"] -diff --git a/runtime/runtime/Cargo.toml b/runtime/runtime/Cargo.toml -index 08f6cd99f..316b1c014 100644 ---- a/runtime/runtime/Cargo.toml -+++ b/runtime/runtime/Cargo.toml -@@ -54,5 +54,5 @@ tempfile.workspace = true - - near-chain-configs = { path = "../../core/chain-configs" } - near-store = { path = "../../core/store", features = ["test_features"] } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - testlib = { path = "../../test-utils/testlib" } -diff --git a/test-utils/runtime-tester/Cargo.toml b/test-utils/runtime-tester/Cargo.toml -index adfc2df91..f6f071eb2 100644 ---- a/test-utils/runtime-tester/Cargo.toml -+++ b/test-utils/runtime-tester/Cargo.toml -@@ -22,7 +22,7 @@ nearcore = { path = "../../nearcore" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } - near-o11y = { path = "../../core/o11y" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - - [dev-dependencies] - testlib = { path = "../testlib" } -diff --git a/test-utils/testlib/Cargo.toml b/test-utils/testlib/Cargo.toml -index 93e414b54..ada794544 100644 ---- a/test-utils/testlib/Cargo.toml -+++ b/test-utils/testlib/Cargo.toml -@@ -12,7 +12,7 @@ near-chain-configs = { path = "../../core/chain-configs" } - near-chain = { path = "../../chain/chain" } - near-crypto = { path = "../../core/crypto" } - near-primitives = { path = "../../core/primitives" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - - [features] - default = [] -diff --git a/tools/amend-genesis/Cargo.toml b/tools/amend-genesis/Cargo.toml -index 539b9d792..13956f9d0 100644 ---- a/tools/amend-genesis/Cargo.toml -+++ b/tools/amend-genesis/Cargo.toml -@@ -23,6 +23,6 @@ near-network = { path = "../../chain/network" } - near-primitives = { path = "../../core/primitives" } - near-primitives-core = { path = "../../core/primitives-core" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - nearcore = { path = "../../nearcore" } - node-runtime = { path = "../../runtime/runtime" } -diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml -index a457d692c..d88a778b0 100644 ---- a/tools/state-viewer/Cargo.toml -+++ b/tools/state-viewer/Cargo.toml -@@ -27,7 +27,7 @@ near-network = { path = "../../chain/network" } - near-primitives = { path = "../../core/primitives" } - near-primitives-core = { path = "../../core/primitives-core" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - nearcore = { path = "../../nearcore" } - node-runtime = { path = "../../runtime/runtime" } - --- -2.39.0 - diff --git a/patches/1.32.0/0001-Make-near-test-contracts-optional.patch b/patches/1.32.0/0001-Make-near-test-contracts-optional.patch deleted file mode 100644 index 30af1cd..0000000 --- a/patches/1.32.0/0001-Make-near-test-contracts-optional.patch +++ /dev/null @@ -1,261 +0,0 @@ -From 897e1250a5d4ed1a8f86d99ea483b5441cdef59b Mon Sep 17 00:00:00 2001 -From: Mark Vainomaa -Date: Tue, 3 Jan 2023 15:17:05 +0200 -Subject: [PATCH] Make near-test-contracts optional - ---- - Cargo.lock | 22 --------------------- - genesis-tools/genesis-populate/Cargo.toml | 2 +- - integration-tests/Cargo.toml | 2 +- - runtime/near-vm-runner/Cargo.toml | 2 +- - runtime/near-vm-runner/fuzz/Cargo.toml | 2 +- - runtime/runtime-params-estimator/Cargo.toml | 4 ++-- - runtime/runtime/Cargo.toml | 2 +- - test-utils/runtime-tester/Cargo.toml | 2 +- - test-utils/testlib/Cargo.toml | 2 +- - tools/amend-genesis/Cargo.toml | 2 +- - tools/state-viewer/Cargo.toml | 2 +- - 11 files changed, 11 insertions(+), 33 deletions(-) - -diff --git a/Cargo.lock b/Cargo.lock -index abc009a88..ff1fde27d 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -2131,7 +2131,6 @@ dependencies = [ - "near-crypto", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "tempfile", - ] -@@ -2526,7 +2525,6 @@ dependencies = [ - "near-stdx 0.16.0", - "near-store", - "near-telemetry", -- "near-test-contracts", - "near-vm-errors", - "near-vm-runner", - "nearcore", -@@ -3071,7 +3069,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "num-rational", -@@ -3884,18 +3881,6 @@ dependencies = [ - "tracing", - ] - --[[package]] --name = "near-test-contracts" --version = "0.0.0" --dependencies = [ -- "arbitrary", -- "once_cell", -- "rand 0.8.5", -- "wasm-encoder", -- "wasm-smith", -- "wat", --] -- - [[package]] - name = "near-vm-errors" - version = "0.0.0" -@@ -3948,7 +3933,6 @@ dependencies = [ - "near-cache", - "near-primitives", - "near-stable-hasher", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "once_cell", -@@ -3980,7 +3964,6 @@ dependencies = [ - "arbitrary", - "libfuzzer-sys", - "near-primitives", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -4133,7 +4116,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -5270,7 +5252,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-logic", - "near-vm-runner", - "nearcore", -@@ -5302,7 +5283,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "serde", - "serde_json", -@@ -5913,7 +5893,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "once_cell", -@@ -6112,7 +6091,6 @@ dependencies = [ - "near-chain-configs", - "near-crypto", - "near-primitives", -- "near-test-contracts", - "node-runtime", - "once_cell", - ] -diff --git a/genesis-tools/genesis-populate/Cargo.toml b/genesis-tools/genesis-populate/Cargo.toml -index c25d8076b..7dbdbfa5e 100644 ---- a/genesis-tools/genesis-populate/Cargo.toml -+++ b/genesis-tools/genesis-populate/Cargo.toml -@@ -17,7 +17,7 @@ near-crypto = { path = "../../core/crypto" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } - near-chain = { path = "../../chain/chain" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - - [features] - protocol_feature_flat_state = [ -diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml -index eab6572b3..58fc7546d 100644 ---- a/integration-tests/Cargo.toml -+++ b/integration-tests/Cargo.toml -@@ -46,7 +46,7 @@ near-primitives-core = { path = "../core/primitives-core" } - near-store = { path = "../core/store" } - near-o11y = { path = "../core/o11y" } - near-telemetry = { path = "../chain/telemetry" } --near-test-contracts = { path = "../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../runtime/near-test-contracts" } - near-performance-metrics = { path = "../utils/near-performance-metrics" } - near-vm-errors = { path = "../runtime/near-vm-errors" } - near-vm-runner = { path = "../runtime/near-vm-runner" } -diff --git a/runtime/near-vm-runner/Cargo.toml b/runtime/near-vm-runner/Cargo.toml -index 55183844c..6370c2164 100644 ---- a/runtime/near-vm-runner/Cargo.toml -+++ b/runtime/near-vm-runner/Cargo.toml -@@ -62,7 +62,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - wat.workspace = true - --near-test-contracts = { path = "../near-test-contracts" } -+#near-test-contracts = { path = "../near-test-contracts" } - - [features] - # all vms enabled for now -diff --git a/runtime/near-vm-runner/fuzz/Cargo.toml b/runtime/near-vm-runner/fuzz/Cargo.toml -index 7af395066..ab45749db 100644 ---- a/runtime/near-vm-runner/fuzz/Cargo.toml -+++ b/runtime/near-vm-runner/fuzz/Cargo.toml -@@ -15,7 +15,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - - near-primitives = { path = "../../../core/primitives" } --near-test-contracts = { path = "../../near-test-contracts" } -+#near-test-contracts = { path = "../../near-test-contracts" } - near-vm-errors = { path = "../../near-vm-errors" } - near-vm-logic = { path = "../../near-vm-logic", default-features = false } - near-vm-runner = { path = ".." } -diff --git a/runtime/runtime-params-estimator/Cargo.toml b/runtime/runtime-params-estimator/Cargo.toml -index 5a02a916f..e34804949 100644 ---- a/runtime/runtime-params-estimator/Cargo.toml -+++ b/runtime/runtime-params-estimator/Cargo.toml -@@ -39,7 +39,7 @@ near-crypto = { path = "../../core/crypto" } - near-o11y = { path = "../../core/o11y" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../near-test-contracts" } -+#near-test-contracts = { path = "../near-test-contracts" } - near-vm-logic = {path = "../../runtime/near-vm-logic" } - near-vm-runner = {path = "../../runtime/near-vm-runner" } - nearcore = { path = "../../nearcore" } -@@ -68,7 +68,7 @@ nightly = [ - ] - nightly_protocol = [ - "near-primitives/nightly_protocol", -- "near-test-contracts/nightly", -+ #"near-test-contracts/nightly", - ] - protocol_feature_flat_state = [ - "nearcore/protocol_feature_flat_state", -diff --git a/runtime/runtime/Cargo.toml b/runtime/runtime/Cargo.toml -index 39a55e42f..33703fb51 100644 ---- a/runtime/runtime/Cargo.toml -+++ b/runtime/runtime/Cargo.toml -@@ -54,5 +54,5 @@ tempfile.workspace = true - - near-chain-configs = { path = "../../core/chain-configs" } - near-store = { path = "../../core/store", features = ["test_features"] } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - testlib = { path = "../../test-utils/testlib" } -diff --git a/test-utils/runtime-tester/Cargo.toml b/test-utils/runtime-tester/Cargo.toml -index adfc2df91..f6f071eb2 100644 ---- a/test-utils/runtime-tester/Cargo.toml -+++ b/test-utils/runtime-tester/Cargo.toml -@@ -22,7 +22,7 @@ nearcore = { path = "../../nearcore" } - near-primitives = { path = "../../core/primitives" } - near-store = { path = "../../core/store" } - near-o11y = { path = "../../core/o11y" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - - [dev-dependencies] - testlib = { path = "../testlib" } -diff --git a/test-utils/testlib/Cargo.toml b/test-utils/testlib/Cargo.toml -index d9208dbe4..6ce125f93 100644 ---- a/test-utils/testlib/Cargo.toml -+++ b/test-utils/testlib/Cargo.toml -@@ -12,7 +12,7 @@ near-chain-configs = { path = "../../core/chain-configs" } - near-chain = { path = "../../chain/chain" } - near-crypto = { path = "../../core/crypto" } - near-primitives = { path = "../../core/primitives" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - node-runtime = { path = "../../runtime/runtime" } - - [features] -diff --git a/tools/amend-genesis/Cargo.toml b/tools/amend-genesis/Cargo.toml -index 539b9d792..13956f9d0 100644 ---- a/tools/amend-genesis/Cargo.toml -+++ b/tools/amend-genesis/Cargo.toml -@@ -23,6 +23,6 @@ near-network = { path = "../../chain/network" } - near-primitives = { path = "../../core/primitives" } - near-primitives-core = { path = "../../core/primitives-core" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - nearcore = { path = "../../nearcore" } - node-runtime = { path = "../../runtime/runtime" } -diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml -index 677dd3503..a6c6f4c45 100644 ---- a/tools/state-viewer/Cargo.toml -+++ b/tools/state-viewer/Cargo.toml -@@ -30,7 +30,7 @@ near-network = { path = "../../chain/network" } - near-primitives = { path = "../../core/primitives" } - near-primitives-core = { path = "../../core/primitives-core" } - near-store = { path = "../../core/store" } --near-test-contracts = { path = "../../runtime/near-test-contracts" } -+#near-test-contracts = { path = "../../runtime/near-test-contracts" } - nearcore = { path = "../../nearcore" } - node-runtime = { path = "../../runtime/runtime" } - --- -2.39.1 - diff --git a/patches/1.34.0/0001-Make-near-test-contracts-optional.patch b/patches/1.34.0/0001-Make-near-test-contracts-optional.patch deleted file mode 100644 index 4997397..0000000 --- a/patches/1.34.0/0001-Make-near-test-contracts-optional.patch +++ /dev/null @@ -1,261 +0,0 @@ -From 425dfeeaa8557630125108b12c7bbfe01ea8325d Mon Sep 17 00:00:00 2001 -From: Mark Vainomaa -Date: Tue, 9 May 2023 17:35:30 +0300 -Subject: [PATCH] Make near-test-contracts optional - ---- - Cargo.lock | 22 --------------------- - genesis-tools/genesis-populate/Cargo.toml | 2 +- - integration-tests/Cargo.toml | 2 +- - runtime/near-vm-runner/Cargo.toml | 2 +- - runtime/near-vm-runner/fuzz/Cargo.toml | 2 +- - runtime/runtime-params-estimator/Cargo.toml | 4 ++-- - runtime/runtime/Cargo.toml | 2 +- - test-utils/runtime-tester/Cargo.toml | 2 +- - test-utils/testlib/Cargo.toml | 2 +- - tools/amend-genesis/Cargo.toml | 2 +- - tools/state-viewer/Cargo.toml | 2 +- - 11 files changed, 11 insertions(+), 33 deletions(-) - -diff --git a/Cargo.lock b/Cargo.lock -index 183705ac0..d3513ced9 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -2145,7 +2145,6 @@ dependencies = [ - "near-crypto", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "tempfile", - ] -@@ -2541,7 +2540,6 @@ dependencies = [ - "near-stdx 0.16.0", - "near-store", - "near-telemetry", -- "near-test-contracts", - "near-undo-block", - "near-vm-errors", - "near-vm-runner", -@@ -3079,7 +3077,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "num-rational", -@@ -3922,18 +3919,6 @@ dependencies = [ - "tracing", - ] - --[[package]] --name = "near-test-contracts" --version = "0.0.0" --dependencies = [ -- "arbitrary", -- "once_cell", -- "rand 0.8.5", -- "wasm-encoder 0.11.0", -- "wasm-smith", -- "wat", --] -- - [[package]] - name = "near-undo-block" - version = "0.0.0" -@@ -4117,7 +4102,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-stable-hasher", -- "near-test-contracts", - "near-vm-compiler", - "near-vm-compiler-singlepass", - "near-vm-engine", -@@ -4156,7 +4140,6 @@ dependencies = [ - "arbitrary", - "libfuzzer-sys", - "near-primitives", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -4353,7 +4336,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -5502,7 +5484,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-logic", - "near-vm-runner", - "nearcore", -@@ -5535,7 +5516,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "serde", - "serde_json", -@@ -6138,7 +6118,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "once_cell", -@@ -6332,7 +6311,6 @@ dependencies = [ - "near-chain-configs", - "near-crypto", - "near-primitives", -- "near-test-contracts", - "node-runtime", - "once_cell", - ] -diff --git a/genesis-tools/genesis-populate/Cargo.toml b/genesis-tools/genesis-populate/Cargo.toml -index 57da41051..e4584742d 100644 ---- a/genesis-tools/genesis-populate/Cargo.toml -+++ b/genesis-tools/genesis-populate/Cargo.toml -@@ -17,7 +17,7 @@ near-crypto.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-chain.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [features] - nightly = [ -diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml -index 8039ef376..34e63163a 100644 ---- a/integration-tests/Cargo.toml -+++ b/integration-tests/Cargo.toml -@@ -47,7 +47,7 @@ near-primitives-core.workspace = true - near-store.workspace = true - near-o11y.workspace = true - near-telemetry.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-performance-metrics.workspace = true - near-undo-block.workspace = true - near-vm-errors.workspace = true -diff --git a/runtime/near-vm-runner/Cargo.toml b/runtime/near-vm-runner/Cargo.toml -index 6e97687ba..88d67683f 100644 ---- a/runtime/near-vm-runner/Cargo.toml -+++ b/runtime/near-vm-runner/Cargo.toml -@@ -62,7 +62,7 @@ bolero.workspace = true - expect-test.workspace = true - hex.workspace = true - near-primitives-core.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - rand.workspace = true - wasm-smith.workspace = true - wasmprinter.workspace = true -diff --git a/runtime/near-vm-runner/fuzz/Cargo.toml b/runtime/near-vm-runner/fuzz/Cargo.toml -index 95fdd9f2e..7fff79eae 100644 ---- a/runtime/near-vm-runner/fuzz/Cargo.toml -+++ b/runtime/near-vm-runner/fuzz/Cargo.toml -@@ -15,7 +15,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-errors.workspace = true - near-vm-logic.workspace = true - near-vm-runner.workspace = true -diff --git a/runtime/runtime-params-estimator/Cargo.toml b/runtime/runtime-params-estimator/Cargo.toml -index 5a82b54a6..e6ff649d6 100644 ---- a/runtime/runtime-params-estimator/Cargo.toml -+++ b/runtime/runtime-params-estimator/Cargo.toml -@@ -40,7 +40,7 @@ near-fmt.workspace = true - near-o11y.workspace = true - near-primitives.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-logic.workspace = true - near-vm-runner.workspace = true - nearcore.workspace = true -@@ -68,7 +68,7 @@ nightly = [ - ] - nightly_protocol = [ - "near-primitives/nightly_protocol", -- "near-test-contracts/nightly", -+ #"near-test-contracts/nightly", - ] - sandbox = ["node-runtime/sandbox"] - io_trace = ["near-store/io_trace", "near-o11y/io_trace", "near-vm-logic/io_trace"] -diff --git a/runtime/runtime/Cargo.toml b/runtime/runtime/Cargo.toml -index 2faa6dde3..c837d05d8 100644 ---- a/runtime/runtime/Cargo.toml -+++ b/runtime/runtime/Cargo.toml -@@ -53,5 +53,5 @@ tempfile.workspace = true - - near-chain-configs.workspace = true - near-store = { workspace = true, features = ["test_features"] } --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - testlib.workspace = true -diff --git a/test-utils/runtime-tester/Cargo.toml b/test-utils/runtime-tester/Cargo.toml -index 3c2e9352f..315e12f60 100644 ---- a/test-utils/runtime-tester/Cargo.toml -+++ b/test-utils/runtime-tester/Cargo.toml -@@ -23,7 +23,7 @@ nearcore.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-o11y.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [dev-dependencies] - testlib.workspace = true -diff --git a/test-utils/testlib/Cargo.toml b/test-utils/testlib/Cargo.toml -index 9f2a4629f..15ae2f9ef 100644 ---- a/test-utils/testlib/Cargo.toml -+++ b/test-utils/testlib/Cargo.toml -@@ -12,7 +12,7 @@ near-chain-configs.workspace = true - near-chain.workspace = true - near-crypto.workspace = true - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - node-runtime.workspace = true - - [features] -diff --git a/tools/amend-genesis/Cargo.toml b/tools/amend-genesis/Cargo.toml -index 5b76dc9a1..32979cb10 100644 ---- a/tools/amend-genesis/Cargo.toml -+++ b/tools/amend-genesis/Cargo.toml -@@ -23,6 +23,6 @@ near-network.workspace = true - near-primitives.workspace = true - near-primitives-core.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true -diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml -index 4c414457b..a819f2e78 100644 ---- a/tools/state-viewer/Cargo.toml -+++ b/tools/state-viewer/Cargo.toml -@@ -32,7 +32,7 @@ near-network.workspace = true - near-primitives.workspace = true - near-primitives-core.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true - --- -2.40.0 - diff --git a/patches/1.35.0-rc.1/0001-Make-near-test-contracts-optional.patch b/patches/1.35.0-rc.1/0001-Make-near-test-contracts-optional.patch deleted file mode 100644 index 5963de5..0000000 --- a/patches/1.35.0-rc.1/0001-Make-near-test-contracts-optional.patch +++ /dev/null @@ -1,261 +0,0 @@ -From 9db09e499d614f3f2117db7cd6c4f420b1e1343d Mon Sep 17 00:00:00 2001 -From: Mark Vainomaa -Date: Tue, 9 May 2023 17:35:30 +0300 -Subject: [PATCH] Make near-test-contracts optional - ---- - Cargo.lock | 22 --------------------- - genesis-tools/genesis-populate/Cargo.toml | 2 +- - integration-tests/Cargo.toml | 2 +- - runtime/near-vm-runner/Cargo.toml | 2 +- - runtime/near-vm-runner/fuzz/Cargo.toml | 2 +- - runtime/runtime-params-estimator/Cargo.toml | 4 ++-- - runtime/runtime/Cargo.toml | 2 +- - test-utils/runtime-tester/Cargo.toml | 2 +- - test-utils/testlib/Cargo.toml | 2 +- - tools/amend-genesis/Cargo.toml | 2 +- - tools/state-viewer/Cargo.toml | 2 +- - 11 files changed, 11 insertions(+), 33 deletions(-) - -diff --git a/Cargo.lock b/Cargo.lock -index a050e1924..021e49377 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -2302,7 +2302,6 @@ dependencies = [ - "near-epoch-manager", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "tempfile", - ] -@@ -2728,7 +2727,6 @@ dependencies = [ - "near-stdx", - "near-store", - "near-telemetry", -- "near-test-contracts", - "near-undo-block", - "near-vm-errors", - "near-vm-runner", -@@ -3293,7 +3291,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "num-rational", -@@ -4133,18 +4130,6 @@ dependencies = [ - "tracing", - ] - --[[package]] --name = "near-test-contracts" --version = "1.35.0-rc.1" --dependencies = [ -- "arbitrary", -- "once_cell", -- "rand 0.8.5", -- "wasm-encoder 0.27.0", -- "wasm-smith", -- "wat", --] -- - [[package]] - name = "near-undo-block" - version = "1.35.0-rc.1" -@@ -4336,7 +4321,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-stable-hasher", -- "near-test-contracts", - "near-vm-compiler", - "near-vm-compiler-singlepass", - "near-vm-engine", -@@ -4376,7 +4360,6 @@ dependencies = [ - "arbitrary", - "libfuzzer-sys", - "near-primitives", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -4582,7 +4565,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -5718,7 +5700,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-logic", - "near-vm-runner", - "nearcore", -@@ -5751,7 +5732,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "serde", - "serde_json", -@@ -6426,7 +6406,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "once_cell", -@@ -6643,7 +6622,6 @@ dependencies = [ - "near-chain-configs", - "near-crypto", - "near-primitives", -- "near-test-contracts", - "node-runtime", - "once_cell", - ] -diff --git a/genesis-tools/genesis-populate/Cargo.toml b/genesis-tools/genesis-populate/Cargo.toml -index e2ff72aa6..102c3e927 100644 ---- a/genesis-tools/genesis-populate/Cargo.toml -+++ b/genesis-tools/genesis-populate/Cargo.toml -@@ -21,7 +21,7 @@ near-epoch-manager.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-chain.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [features] - nightly = [ -diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml -index 23f7854aa..74505228b 100644 ---- a/integration-tests/Cargo.toml -+++ b/integration-tests/Cargo.toml -@@ -50,7 +50,7 @@ near-primitives-core.workspace = true - near-store.workspace = true - near-o11y.workspace = true - near-telemetry.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-performance-metrics.workspace = true - near-undo-block.workspace = true - near-vm-errors.workspace = true -diff --git a/runtime/near-vm-runner/Cargo.toml b/runtime/near-vm-runner/Cargo.toml -index 636158851..0a1d8feae 100644 ---- a/runtime/near-vm-runner/Cargo.toml -+++ b/runtime/near-vm-runner/Cargo.toml -@@ -60,7 +60,7 @@ bolero.workspace = true - expect-test.workspace = true - hex.workspace = true - near-primitives-core.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - rand.workspace = true - wasm-smith.workspace = true - wasmprinter.workspace = true -diff --git a/runtime/near-vm-runner/fuzz/Cargo.toml b/runtime/near-vm-runner/fuzz/Cargo.toml -index 416440abb..1c62e7f42 100644 ---- a/runtime/near-vm-runner/fuzz/Cargo.toml -+++ b/runtime/near-vm-runner/fuzz/Cargo.toml -@@ -18,7 +18,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-errors.workspace = true - near-vm-logic.workspace = true - near-vm-runner.workspace = true -diff --git a/runtime/runtime-params-estimator/Cargo.toml b/runtime/runtime-params-estimator/Cargo.toml -index 3ec1f7037..2e2b878c9 100644 ---- a/runtime/runtime-params-estimator/Cargo.toml -+++ b/runtime/runtime-params-estimator/Cargo.toml -@@ -43,7 +43,7 @@ near-fmt.workspace = true - near-o11y.workspace = true - near-primitives.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-logic.workspace = true - near-vm-runner = { workspace = true, features = ["clap"] } - nearcore.workspace = true -@@ -71,7 +71,7 @@ nightly = [ - ] - nightly_protocol = [ - "near-primitives/nightly_protocol", -- "near-test-contracts/nightly", -+ #"near-test-contracts/nightly", - ] - sandbox = ["node-runtime/sandbox"] - io_trace = ["near-store/io_trace", "near-o11y/io_trace", "near-vm-logic/io_trace"] -diff --git a/runtime/runtime/Cargo.toml b/runtime/runtime/Cargo.toml -index 46c3e964d..208013578 100644 ---- a/runtime/runtime/Cargo.toml -+++ b/runtime/runtime/Cargo.toml -@@ -55,5 +55,5 @@ tempfile.workspace = true - - near-chain-configs.workspace = true - near-store = { workspace = true, features = ["test_features"] } --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - testlib.workspace = true -diff --git a/test-utils/runtime-tester/Cargo.toml b/test-utils/runtime-tester/Cargo.toml -index 20a9614e6..5bfb8d1a4 100644 ---- a/test-utils/runtime-tester/Cargo.toml -+++ b/test-utils/runtime-tester/Cargo.toml -@@ -26,7 +26,7 @@ nearcore.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-o11y.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [dev-dependencies] - testlib.workspace = true -diff --git a/test-utils/testlib/Cargo.toml b/test-utils/testlib/Cargo.toml -index e9aab04ff..6f70aedcf 100644 ---- a/test-utils/testlib/Cargo.toml -+++ b/test-utils/testlib/Cargo.toml -@@ -15,7 +15,7 @@ near-chain-configs.workspace = true - near-chain.workspace = true - near-crypto.workspace = true - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - node-runtime.workspace = true - - [features] -diff --git a/tools/amend-genesis/Cargo.toml b/tools/amend-genesis/Cargo.toml -index aaddc473d..c36bf09b9 100644 ---- a/tools/amend-genesis/Cargo.toml -+++ b/tools/amend-genesis/Cargo.toml -@@ -26,6 +26,6 @@ near-network.workspace = true - near-primitives.workspace = true - near-primitives-core.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true -diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml -index 0cb182369..d2cfb4e35 100644 ---- a/tools/state-viewer/Cargo.toml -+++ b/tools/state-viewer/Cargo.toml -@@ -37,7 +37,7 @@ near-o11y.workspace = true - near-primitives-core.workspace = true - near-primitives.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true - --- -2.40.1 - diff --git a/patches/1.35.0/0001-Make-near-test-contracts-optional.patch b/patches/1.35.0/0001-Make-near-test-contracts-optional.patch deleted file mode 100644 index 9296b43..0000000 --- a/patches/1.35.0/0001-Make-near-test-contracts-optional.patch +++ /dev/null @@ -1,261 +0,0 @@ -From 716d969128254018be08ebd877417a537b29bb67 Mon Sep 17 00:00:00 2001 -From: Mark Vainomaa -Date: Tue, 9 May 2023 17:35:30 +0300 -Subject: [PATCH] Make near-test-contracts optional - ---- - Cargo.lock | 22 --------------------- - genesis-tools/genesis-populate/Cargo.toml | 2 +- - integration-tests/Cargo.toml | 2 +- - runtime/near-vm-runner/Cargo.toml | 2 +- - runtime/near-vm-runner/fuzz/Cargo.toml | 2 +- - runtime/runtime-params-estimator/Cargo.toml | 4 ++-- - runtime/runtime/Cargo.toml | 2 +- - test-utils/runtime-tester/Cargo.toml | 2 +- - test-utils/testlib/Cargo.toml | 2 +- - tools/amend-genesis/Cargo.toml | 2 +- - tools/state-viewer/Cargo.toml | 2 +- - 11 files changed, 11 insertions(+), 33 deletions(-) - -diff --git a/Cargo.lock b/Cargo.lock -index 488964102..a9a469916 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -2302,7 +2302,6 @@ dependencies = [ - "near-epoch-manager", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "tempfile", - ] -@@ -2728,7 +2727,6 @@ dependencies = [ - "near-stdx", - "near-store", - "near-telemetry", -- "near-test-contracts", - "near-undo-block", - "near-vm-errors", - "near-vm-runner", -@@ -3293,7 +3291,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "num-rational", -@@ -4133,18 +4130,6 @@ dependencies = [ - "tracing", - ] - --[[package]] --name = "near-test-contracts" --version = "1.35.0" --dependencies = [ -- "arbitrary", -- "once_cell", -- "rand 0.8.5", -- "wasm-encoder 0.27.0", -- "wasm-smith", -- "wat", --] -- - [[package]] - name = "near-undo-block" - version = "1.35.0" -@@ -4336,7 +4321,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-stable-hasher", -- "near-test-contracts", - "near-vm-compiler", - "near-vm-compiler-singlepass", - "near-vm-engine", -@@ -4376,7 +4360,6 @@ dependencies = [ - "arbitrary", - "libfuzzer-sys", - "near-primitives", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -4582,7 +4565,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-errors", - "near-vm-logic", - "near-vm-runner", -@@ -5718,7 +5700,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "near-vm-logic", - "near-vm-runner", - "nearcore", -@@ -5751,7 +5732,6 @@ dependencies = [ - "near-o11y", - "near-primitives", - "near-store", -- "near-test-contracts", - "nearcore", - "serde", - "serde_json", -@@ -6426,7 +6406,6 @@ dependencies = [ - "near-primitives", - "near-primitives-core", - "near-store", -- "near-test-contracts", - "nearcore", - "node-runtime", - "once_cell", -@@ -6643,7 +6622,6 @@ dependencies = [ - "near-chain-configs", - "near-crypto", - "near-primitives", -- "near-test-contracts", - "node-runtime", - "once_cell", - ] -diff --git a/genesis-tools/genesis-populate/Cargo.toml b/genesis-tools/genesis-populate/Cargo.toml -index e2ff72aa6..102c3e927 100644 ---- a/genesis-tools/genesis-populate/Cargo.toml -+++ b/genesis-tools/genesis-populate/Cargo.toml -@@ -21,7 +21,7 @@ near-epoch-manager.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-chain.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [features] - nightly = [ -diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml -index 23f7854aa..74505228b 100644 ---- a/integration-tests/Cargo.toml -+++ b/integration-tests/Cargo.toml -@@ -50,7 +50,7 @@ near-primitives-core.workspace = true - near-store.workspace = true - near-o11y.workspace = true - near-telemetry.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-performance-metrics.workspace = true - near-undo-block.workspace = true - near-vm-errors.workspace = true -diff --git a/runtime/near-vm-runner/Cargo.toml b/runtime/near-vm-runner/Cargo.toml -index 636158851..0a1d8feae 100644 ---- a/runtime/near-vm-runner/Cargo.toml -+++ b/runtime/near-vm-runner/Cargo.toml -@@ -60,7 +60,7 @@ bolero.workspace = true - expect-test.workspace = true - hex.workspace = true - near-primitives-core.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - rand.workspace = true - wasm-smith.workspace = true - wasmprinter.workspace = true -diff --git a/runtime/near-vm-runner/fuzz/Cargo.toml b/runtime/near-vm-runner/fuzz/Cargo.toml -index 416440abb..1c62e7f42 100644 ---- a/runtime/near-vm-runner/fuzz/Cargo.toml -+++ b/runtime/near-vm-runner/fuzz/Cargo.toml -@@ -18,7 +18,7 @@ wasm-smith.workspace = true - wasmprinter.workspace = true - - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-errors.workspace = true - near-vm-logic.workspace = true - near-vm-runner.workspace = true -diff --git a/runtime/runtime-params-estimator/Cargo.toml b/runtime/runtime-params-estimator/Cargo.toml -index 3ec1f7037..2e2b878c9 100644 ---- a/runtime/runtime-params-estimator/Cargo.toml -+++ b/runtime/runtime-params-estimator/Cargo.toml -@@ -43,7 +43,7 @@ near-fmt.workspace = true - near-o11y.workspace = true - near-primitives.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - near-vm-logic.workspace = true - near-vm-runner = { workspace = true, features = ["clap"] } - nearcore.workspace = true -@@ -71,7 +71,7 @@ nightly = [ - ] - nightly_protocol = [ - "near-primitives/nightly_protocol", -- "near-test-contracts/nightly", -+ #"near-test-contracts/nightly", - ] - sandbox = ["node-runtime/sandbox"] - io_trace = ["near-store/io_trace", "near-o11y/io_trace", "near-vm-logic/io_trace"] -diff --git a/runtime/runtime/Cargo.toml b/runtime/runtime/Cargo.toml -index 46c3e964d..208013578 100644 ---- a/runtime/runtime/Cargo.toml -+++ b/runtime/runtime/Cargo.toml -@@ -55,5 +55,5 @@ tempfile.workspace = true - - near-chain-configs.workspace = true - near-store = { workspace = true, features = ["test_features"] } --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - testlib.workspace = true -diff --git a/test-utils/runtime-tester/Cargo.toml b/test-utils/runtime-tester/Cargo.toml -index 20a9614e6..5bfb8d1a4 100644 ---- a/test-utils/runtime-tester/Cargo.toml -+++ b/test-utils/runtime-tester/Cargo.toml -@@ -26,7 +26,7 @@ nearcore.workspace = true - near-primitives.workspace = true - near-store.workspace = true - near-o11y.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - - [dev-dependencies] - testlib.workspace = true -diff --git a/test-utils/testlib/Cargo.toml b/test-utils/testlib/Cargo.toml -index e9aab04ff..6f70aedcf 100644 ---- a/test-utils/testlib/Cargo.toml -+++ b/test-utils/testlib/Cargo.toml -@@ -15,7 +15,7 @@ near-chain-configs.workspace = true - near-chain.workspace = true - near-crypto.workspace = true - near-primitives.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - node-runtime.workspace = true - - [features] -diff --git a/tools/amend-genesis/Cargo.toml b/tools/amend-genesis/Cargo.toml -index aaddc473d..c36bf09b9 100644 ---- a/tools/amend-genesis/Cargo.toml -+++ b/tools/amend-genesis/Cargo.toml -@@ -26,6 +26,6 @@ near-network.workspace = true - near-primitives.workspace = true - near-primitives-core.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true -diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml -index 0cb182369..d2cfb4e35 100644 ---- a/tools/state-viewer/Cargo.toml -+++ b/tools/state-viewer/Cargo.toml -@@ -37,7 +37,7 @@ near-o11y.workspace = true - near-primitives-core.workspace = true - near-primitives.workspace = true - near-store.workspace = true --near-test-contracts.workspace = true -+#near-test-contracts.workspace = true - nearcore.workspace = true - node-runtime.workspace = true - --- -2.41.0 -