@layerzerolabs/protocol-stellar-v2 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +795 -791
- package/.turbo/turbo-lint.log +325 -155
- package/.turbo/turbo-test.log +1398 -1277
- package/Cargo.lock +122 -111
- package/Cargo.toml +32 -16
- package/contracts/common-macros/Cargo.toml +7 -7
- package/contracts/common-macros/src/auth.rs +18 -37
- package/contracts/common-macros/src/contract_ttl.rs +18 -7
- package/contracts/common-macros/src/lib.rs +31 -14
- package/contracts/common-macros/src/lz_contract.rs +38 -7
- package/contracts/common-macros/src/storage.rs +251 -292
- package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +6 -12
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +12 -17
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__ttl_configurable__snapshot_generated_ttl_configurable_code.snap +2 -7
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +20 -14
- package/contracts/common-macros/src/tests/upgradeable.rs +26 -4
- package/contracts/common-macros/src/ttl_configurable.rs +2 -10
- package/contracts/common-macros/src/ttl_extendable.rs +2 -10
- package/contracts/common-macros/src/upgradeable.rs +61 -26
- package/contracts/common-macros/src/utils.rs +0 -9
- package/contracts/endpoint-v2/src/lib.rs +3 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/lz_receive_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/endpoint_v2/send.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_delegate.rs +17 -5
- package/contracts/endpoint-v2/src/tests/endpoint_v2/set_zro.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/register_library.rs +2 -2
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_lib_timeout.rs +6 -6
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_receive_library.rs +67 -37
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_default_send_library.rs +5 -5
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library.rs +44 -54
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_receive_library_timeout.rs +7 -7
- package/contracts/endpoint-v2/src/tests/message_lib_manager/set_send_library.rs +8 -8
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +4 -4
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/clear_compose.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_composer/lz_compose_alert.rs +3 -3
- package/contracts/endpoint-v2/src/tests/messaging_composer/send_compose.rs +2 -2
- package/contracts/layerzero-views/Cargo.toml +0 -1
- package/contracts/layerzero-views/src/layerzero_view.rs +1 -13
- package/contracts/macro-integration-tests/Cargo.toml +5 -15
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +48 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +170 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +154 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +338 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +435 -0
- package/contracts/macro-integration-tests/tests/runtime.rs +1 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/custom_wrong_value.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +71 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.rs +10 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/non_struct_input.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/unknown_custom_option.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.rs +8 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/wrong_key.stderr +5 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +38 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +96 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +64 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +46 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/fail/only_auth_missing_env.stderr +8 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/namespacing_and_imports.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/only_auth_env_param_variants.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui_oapp.rs +11 -0
- package/contracts/message-libs/message-lib-common/Cargo.toml +0 -1
- package/contracts/message-libs/message-lib-common/src/errors.rs +1 -1
- package/contracts/message-libs/treasury/Cargo.toml +0 -2
- package/contracts/message-libs/treasury/src/tests/treasury_tests.rs +2 -2
- package/contracts/message-libs/uln-302/src/events.rs +4 -0
- package/contracts/message-libs/uln-302/src/send_uln.rs +22 -6
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/effective_receive_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/set_default_receive_uln_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/receive_uln302/verify.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_executor_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/effective_send_uln_config.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +21 -67
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_executor_configs.rs +2 -2
- package/contracts/message-libs/uln-302/src/tests/send_uln302/set_default_send_uln_configs.rs +2 -2
- package/contracts/oapps/counter/Cargo.toml +5 -6
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
- package/contracts/oapps/counter/integration_tests/utils.rs +19 -12
- package/contracts/oapps/oapp/src/errors.rs +1 -1
- package/contracts/oapps/oapp/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/oapp/src/interfaces/oapp_msg_inspector.rs +47 -0
- package/contracts/oapps/oapp/src/lib.rs +1 -0
- package/contracts/oapps/oapp/src/macro_tests/test_macros.rs +4 -4
- package/contracts/oapps/oapp/src/oapp_core.rs +5 -5
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +12 -4
- package/contracts/oapps/oapp/src/oapp_receiver.rs +14 -9
- package/contracts/oapps/oapp/src/tests/mod.rs +4 -4
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +223 -0
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +240 -0
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +381 -0
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +569 -0
- package/contracts/oapps/oapp-macros/Cargo.toml +8 -4
- package/contracts/oapps/oapp-macros/src/generators.rs +9 -34
- package/contracts/oapps/oapp-macros/src/lib.rs +3 -0
- package/contracts/oapps/oapp-macros/src/tests/mod.rs +2 -0
- package/contracts/oapps/oapp-macros/src/tests/oapp.rs +88 -0
- package/contracts/oapps/oapp-macros/src/tests/parse_custom_impls.rs +86 -0
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +103 -0
- package/contracts/oapps/oft/integration-tests/utils.rs +28 -8
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +153 -75
- package/contracts/oapps/oft/src/extensions/pausable.rs +61 -12
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +198 -134
- package/contracts/oapps/oft/src/oft.rs +45 -50
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +4 -26
- package/contracts/oapps/oft-core/Cargo.toml +1 -4
- package/contracts/oapps/oft-core/integration-tests/setup.rs +3 -3
- package/contracts/oapps/oft-core/integration-tests/utils.rs +21 -3
- package/contracts/oapps/oft-core/src/errors.rs +3 -2
- package/contracts/oapps/oft-core/src/events.rs +6 -0
- package/contracts/oapps/oft-core/src/lib.rs +1 -1
- package/contracts/oapps/oft-core/src/oft_core.rs +341 -246
- package/contracts/oapps/oft-core/src/storage.rs +7 -3
- package/contracts/oapps/oft-core/src/tests/mod.rs +1 -0
- package/contracts/oapps/oft-core/src/tests/test_decimals.rs +37 -2
- package/contracts/oapps/oft-core/src/tests/test_lz_receive.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +323 -0
- package/contracts/oapps/oft-core/src/tests/test_send.rs +2 -2
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +61 -16
- package/contracts/upgrader/src/lib.rs +30 -57
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
- package/contracts/utils/Cargo.toml +0 -1
- package/contracts/utils/src/buffer_reader.rs +1 -0
- package/contracts/utils/src/errors.rs +4 -2
- package/contracts/utils/src/multisig.rs +17 -8
- package/contracts/utils/src/ownable.rs +6 -6
- package/contracts/utils/src/testing_utils.rs +124 -54
- package/contracts/utils/src/tests/multisig.rs +12 -12
- package/contracts/utils/src/tests/ownable.rs +6 -6
- package/contracts/utils/src/tests/testing_utils.rs +50 -167
- package/contracts/utils/src/tests/ttl_configurable.rs +5 -5
- package/contracts/utils/src/tests/upgradeable.rs +372 -175
- package/contracts/utils/src/ttl_configurable.rs +13 -7
- package/contracts/utils/src/upgradeable.rs +48 -23
- package/contracts/workers/dvn/Cargo.toml +6 -6
- package/contracts/workers/dvn/src/auth.rs +12 -42
- package/contracts/workers/dvn/src/dvn.rs +15 -40
- package/contracts/workers/dvn/src/errors.rs +0 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
- package/contracts/workers/dvn/src/lib.rs +4 -3
- package/contracts/workers/dvn/src/tests/auth.rs +1 -1
- package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
- package/contracts/workers/dvn/src/tests/setup.rs +5 -9
- package/contracts/workers/dvn-fee-lib/Cargo.toml +2 -2
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +38 -22
- package/contracts/workers/dvn-fee-lib/src/lib.rs +12 -2
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +17 -16
- package/contracts/workers/executor/Cargo.toml +4 -0
- package/contracts/workers/executor/src/executor.rs +15 -36
- package/contracts/workers/executor/src/lib.rs +2 -2
- package/contracts/workers/executor/src/tests/auth.rs +394 -0
- package/contracts/workers/executor/src/tests/executor.rs +410 -0
- package/contracts/workers/executor/src/tests/mod.rs +3 -0
- package/contracts/workers/executor/src/tests/setup.rs +250 -0
- package/contracts/workers/executor-fee-lib/Cargo.toml +7 -1
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +62 -15
- package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
- package/contracts/workers/executor-fee-lib/src/lib.rs +11 -2
- package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
- package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
- package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
- package/contracts/workers/executor-helper/Cargo.toml +0 -1
- package/contracts/workers/executor-helper/src/lib.rs +3 -0
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
- package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
- package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
- package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
- package/contracts/workers/price-feed/Cargo.toml +7 -1
- package/contracts/workers/price-feed/src/events.rs +1 -1
- package/contracts/workers/price-feed/src/lib.rs +12 -4
- package/contracts/workers/price-feed/src/price_feed.rs +5 -21
- package/contracts/workers/price-feed/src/storage.rs +1 -1
- package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
- package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
- package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
- package/contracts/workers/price-feed/src/types.rs +1 -1
- package/contracts/workers/worker/src/errors.rs +1 -4
- package/contracts/workers/worker/src/lib.rs +0 -2
- package/contracts/workers/worker/src/storage.rs +32 -29
- package/contracts/workers/worker/src/tests/setup.rs +2 -8
- package/contracts/workers/worker/src/tests/worker.rs +96 -74
- package/contracts/workers/worker/src/worker.rs +75 -75
- package/docs/error-spec.md +55 -0
- package/docs/layerzero-v2-on-stellar.md +447 -0
- package/docs/oapp-guide.md +212 -0
- package/docs/oft-guide.md +314 -0
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +268 -263
- package/sdk/dist/generated/bml.d.ts +12 -4
- package/sdk/dist/generated/bml.js +9 -7
- package/sdk/dist/generated/counter.d.ts +306 -298
- package/sdk/dist/generated/counter.js +48 -46
- package/sdk/dist/generated/dvn.d.ts +450 -411
- package/sdk/dist/generated/dvn.js +66 -64
- package/sdk/dist/generated/dvn_fee_lib.d.ts +294 -338
- package/sdk/dist/generated/dvn_fee_lib.js +33 -64
- package/sdk/dist/generated/endpoint.d.ts +108 -100
- package/sdk/dist/generated/endpoint.js +21 -19
- package/sdk/dist/generated/executor.d.ts +414 -370
- package/sdk/dist/generated/executor.js +58 -55
- package/sdk/dist/generated/executor_fee_lib.d.ts +333 -377
- package/sdk/dist/generated/executor_fee_lib.js +34 -65
- package/sdk/dist/generated/executor_helper.d.ts +26 -190
- package/sdk/dist/generated/executor_helper.js +23 -28
- package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
- package/sdk/dist/generated/layerzero_view.js +294 -0
- package/sdk/dist/generated/oft.d.ts +408 -385
- package/sdk/dist/generated/oft.js +89 -92
- package/sdk/dist/generated/price_feed.d.ts +385 -429
- package/sdk/dist/generated/price_feed.js +50 -81
- package/sdk/dist/generated/sml.d.ts +108 -100
- package/sdk/dist/generated/sml.js +21 -19
- package/sdk/dist/generated/treasury.d.ts +108 -100
- package/sdk/dist/generated/treasury.js +21 -19
- package/sdk/dist/generated/uln302.d.ts +108 -100
- package/sdk/dist/generated/uln302.js +23 -21
- package/sdk/dist/generated/upgrader.d.ts +189 -18
- package/sdk/dist/generated/upgrader.js +84 -4
- package/sdk/dist/index.d.ts +1 -0
- package/sdk/dist/index.js +2 -0
- package/sdk/package.json +1 -1
- package/sdk/src/index.ts +3 -0
- package/sdk/test/oft-sml.test.ts +4 -4
- package/sdk/test/suites/localnet.ts +84 -20
- package/sdk/test/upgrader.test.ts +2 -3
- package/tools/ts-bindings-gen/src/main.rs +2 -1
- package/contracts/ERROR_SPEC.md +0 -44
- package/contracts/endpoint-v2/ARCHITECTURE.md +0 -233
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +0 -175
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +0 -212
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +0 -153
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +0 -294
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
package/.turbo/turbo-lint.log
CHANGED
|
@@ -3,214 +3,384 @@
|
|
|
3
3
|
> pnpm exec lz-tool --script "cargo clippy -- -D warnings" stellar
|
|
4
4
|
|
|
5
5
|
📦 Using 4 default cache volume(s) for stellar
|
|
6
|
-
✅ stellar-
|
|
7
|
-
🔧 stellar version:
|
|
8
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
📥 Pulling Docker image from ECR: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
12
|
-
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
13
|
-
stellar_23.1.4_patch_6: Pulling from layerzerolabs/stellar-tooling
|
|
14
|
-
f6bd9104d248: Already exists
|
|
15
|
-
4617420e017b: Already exists
|
|
16
|
-
e9886d99af76: Pulling fs layer
|
|
17
|
-
889cdda75b95: Pulling fs layer
|
|
18
|
-
a7d3f750d5ec: Pulling fs layer
|
|
19
|
-
8a4f031cd7ce: Pulling fs layer
|
|
20
|
-
2ff845d4f468: Pulling fs layer
|
|
21
|
-
2c1ce468d9f3: Pulling fs layer
|
|
22
|
-
1b86cc28e881: Pulling fs layer
|
|
23
|
-
f83e34e44849: Pulling fs layer
|
|
24
|
-
8bc2eeec2bb3: Pulling fs layer
|
|
25
|
-
2965c99ac5df: Pulling fs layer
|
|
26
|
-
66f4137c2c7c: Pulling fs layer
|
|
27
|
-
8bc2eeec2bb3: Waiting
|
|
28
|
-
2ff845d4f468: Waiting
|
|
29
|
-
1b86cc28e881: Waiting
|
|
30
|
-
2c1ce468d9f3: Waiting
|
|
31
|
-
f83e34e44849: Waiting
|
|
32
|
-
66f4137c2c7c: Waiting
|
|
33
|
-
e9886d99af76: Waiting
|
|
34
|
-
2965c99ac5df: Waiting
|
|
35
|
-
a7d3f750d5ec: Waiting
|
|
36
|
-
889cdda75b95: Waiting
|
|
37
|
-
8a4f031cd7ce: Waiting
|
|
38
|
-
889cdda75b95: Verifying Checksum
|
|
39
|
-
889cdda75b95: Download complete
|
|
40
|
-
a7d3f750d5ec: Verifying Checksum
|
|
41
|
-
a7d3f750d5ec: Download complete
|
|
42
|
-
8a4f031cd7ce: Verifying Checksum
|
|
43
|
-
8a4f031cd7ce: Download complete
|
|
44
|
-
e9886d99af76: Verifying Checksum
|
|
45
|
-
e9886d99af76: Download complete
|
|
46
|
-
2c1ce468d9f3: Verifying Checksum
|
|
47
|
-
2c1ce468d9f3: Download complete
|
|
48
|
-
2ff845d4f468: Download complete
|
|
49
|
-
1b86cc28e881: Verifying Checksum
|
|
50
|
-
1b86cc28e881: Download complete
|
|
51
|
-
f83e34e44849: Verifying Checksum
|
|
52
|
-
f83e34e44849: Download complete
|
|
53
|
-
8bc2eeec2bb3: Download complete
|
|
54
|
-
2965c99ac5df: Verifying Checksum
|
|
55
|
-
2965c99ac5df: Download complete
|
|
56
|
-
66f4137c2c7c: Download complete
|
|
57
|
-
e9886d99af76: Pull complete
|
|
58
|
-
889cdda75b95: Pull complete
|
|
59
|
-
a7d3f750d5ec: Pull complete
|
|
60
|
-
8a4f031cd7ce: Pull complete
|
|
61
|
-
2ff845d4f468: Pull complete
|
|
62
|
-
2c1ce468d9f3: Pull complete
|
|
63
|
-
1b86cc28e881: Pull complete
|
|
64
|
-
f83e34e44849: Pull complete
|
|
65
|
-
8bc2eeec2bb3: Pull complete
|
|
66
|
-
2965c99ac5df: Pull complete
|
|
67
|
-
66f4137c2c7c: Pull complete
|
|
68
|
-
Digest: sha256:635ca108241d5962b99bfce73582af12fbeea76e530b326fdcfc7224fa2ca257
|
|
69
|
-
Status: Downloaded newer image for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
70
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
71
|
-
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
6
|
+
✅ stellar-25.0.0 (Latest stable release)
|
|
7
|
+
🔧 stellar version: 25.0.0
|
|
8
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
9
|
+
sha256:3b1e577a4303ad4a4df7bc898df7b4c89fa8e14faab5e73fc574869af49f9b3b
|
|
10
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0
|
|
72
11
|
👤 Running container as UID:GID 1001:1001
|
|
73
12
|
🌍 Using 5 default environment variable(s) for stellar
|
|
74
13
|
📜 Executing custom script: cargo clippy -- -D warnings
|
|
75
14
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
76
15
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
77
16
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
78
|
-
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:
|
|
17
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.0.0 bash -c $'cargo clippy -- -D warnings'
|
|
18
|
+
info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
|
|
19
|
+
info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
|
|
20
|
+
info: downloading component 'cargo'
|
|
21
|
+
info: downloading component 'clippy'
|
|
22
|
+
info: downloading component 'rust-docs'
|
|
23
|
+
info: downloading component 'rust-std' for 'wasm32v1-none'
|
|
24
|
+
info: downloading component 'rust-std'
|
|
25
|
+
info: downloading component 'rustc'
|
|
26
|
+
info: downloading component 'rustfmt'
|
|
27
|
+
info: installing component 'cargo'
|
|
28
|
+
info: installing component 'clippy'
|
|
29
|
+
info: installing component 'rust-docs'
|
|
30
|
+
info: installing component 'rust-std' for 'wasm32v1-none'
|
|
31
|
+
info: installing component 'rust-std'
|
|
32
|
+
info: installing component 'rustc'
|
|
33
|
+
info: installing component 'rustfmt'
|
|
34
|
+
Updating crates.io index
|
|
35
|
+
Downloading crates ...
|
|
36
|
+
Downloaded ark-ff-asm v0.4.2
|
|
37
|
+
Downloaded arbitrary v1.3.2
|
|
38
|
+
Downloaded ark-ff-macros v0.4.2
|
|
39
|
+
Downloaded ark-bn254 v0.4.0
|
|
40
|
+
Downloaded ahash v0.8.12
|
|
41
|
+
Downloaded base16ct v0.2.0
|
|
42
|
+
Downloaded rand_core v0.6.4
|
|
43
|
+
Downloaded num-derive v0.4.2
|
|
44
|
+
Downloaded ark-ff v0.4.2
|
|
45
|
+
Downloaded opaque-debug v0.3.1
|
|
46
|
+
Downloaded pkcs8 v0.10.2
|
|
47
|
+
Downloaded hex-literal v0.4.1
|
|
48
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
49
|
+
Downloaded itoa v1.0.15
|
|
50
|
+
Downloaded ref-cast v1.0.25
|
|
51
|
+
Downloaded autocfg v1.5.0
|
|
52
|
+
Downloaded time-macros v0.2.24
|
|
53
|
+
Downloaded visibility v0.1.1
|
|
54
|
+
Downloaded unicode-ident v1.0.22
|
|
55
|
+
Downloaded zeroize v1.8.2
|
|
56
|
+
Downloaded thiserror-impl v1.0.69
|
|
57
|
+
Downloaded zeroize_derive v1.4.2
|
|
58
|
+
Downloaded rand v0.8.5
|
|
59
|
+
Downloaded itertools v0.14.0
|
|
60
|
+
Downloaded soroban-spec v25.0.1
|
|
61
|
+
Downloaded zerocopy v0.8.27
|
|
62
|
+
Downloaded time-core v0.1.6
|
|
63
|
+
Downloaded wasmi_arena v0.4.1
|
|
64
|
+
Downloaded soroban-spec v23.4.0
|
|
65
|
+
Downloaded serde_json v1.0.145
|
|
66
|
+
Downloaded stellar-xdr v25.0.0
|
|
67
|
+
Downloaded syn v2.0.108
|
|
68
|
+
Downloaded soroban-spec-typescript v23.1.4
|
|
69
|
+
Downloaded wasmparser v0.116.1
|
|
70
|
+
Downloaded version_check v0.9.5
|
|
71
|
+
Downloaded soroban-ledger-snapshot v25.0.1
|
|
72
|
+
Downloaded stellar-strkey v0.0.16
|
|
73
|
+
Downloaded smallvec v1.15.1
|
|
74
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
75
|
+
Downloaded typenum v1.19.0
|
|
76
|
+
Downloaded schemars v0.9.0
|
|
77
|
+
Downloaded schemars v1.0.5
|
|
78
|
+
Downloaded wasmparser-nostd v0.100.2
|
|
79
|
+
Downloaded schemars v0.8.22
|
|
80
|
+
Downloaded serde_with_macros v3.15.1
|
|
81
|
+
Downloaded ryu v1.0.20
|
|
82
|
+
Downloaded semver v1.0.27
|
|
83
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
84
|
+
Downloaded syn v1.0.109
|
|
85
|
+
Downloaded stable_deref_trait v1.2.1
|
|
86
|
+
Downloaded soroban-sdk-macros v25.0.1
|
|
87
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
88
|
+
Downloaded sha3 v0.10.8
|
|
89
|
+
Downloaded sha2 v0.9.9
|
|
90
|
+
Downloaded rustc_version v0.4.1
|
|
91
|
+
Downloaded soroban-sdk v25.0.1
|
|
92
|
+
Downloaded serde v1.0.228
|
|
93
|
+
Downloaded curve25519-dalek v4.1.3
|
|
94
|
+
Downloaded libc v0.2.177
|
|
95
|
+
Downloaded serde_core v1.0.228
|
|
96
|
+
Downloaded time v0.3.44
|
|
97
|
+
Downloaded soroban-env-common v25.0.1
|
|
98
|
+
Downloaded sha2 v0.10.9
|
|
99
|
+
Downloaded serde_with v3.15.1
|
|
100
|
+
Downloaded chrono v0.4.42
|
|
101
|
+
Downloaded soroban-env-host v25.0.1
|
|
102
|
+
Downloaded sec1 v0.7.3
|
|
103
|
+
Downloaded libm v0.2.15
|
|
104
|
+
Downloaded hashbrown v0.16.0
|
|
105
|
+
Downloaded hashbrown v0.13.2
|
|
106
|
+
Downloaded serde_derive v1.0.228
|
|
107
|
+
Downloaded ref-cast-impl v1.0.25
|
|
108
|
+
Downloaded itertools v0.10.5
|
|
109
|
+
Downloaded darling_core v0.20.11
|
|
110
|
+
Downloaded wasmi_core v0.13.0
|
|
111
|
+
Downloaded strsim v0.11.1
|
|
112
|
+
Downloaded stellar-strkey v0.0.13
|
|
113
|
+
Downloaded spki v0.7.3
|
|
114
|
+
Downloaded soroban-env-macros v25.0.1
|
|
115
|
+
Downloaded rfc6979 v0.4.0
|
|
116
|
+
Downloaded memchr v2.7.6
|
|
117
|
+
Downloaded hashbrown v0.12.3
|
|
118
|
+
Downloaded base64 v0.22.1
|
|
119
|
+
Downloaded base64 v0.21.7
|
|
120
|
+
Downloaded thiserror v1.0.69
|
|
121
|
+
Downloaded spin v0.9.8
|
|
122
|
+
Downloaded once_cell v1.21.3
|
|
123
|
+
Downloaded num-bigint v0.4.6
|
|
124
|
+
Downloaded k256 v0.13.4
|
|
125
|
+
Downloaded indexmap v2.12.0
|
|
126
|
+
Downloaded hmac v0.12.1
|
|
127
|
+
Downloaded heapless v0.8.0
|
|
128
|
+
Downloaded ed25519-dalek v2.2.0
|
|
129
|
+
Downloaded derivative v2.2.0
|
|
130
|
+
Downloaded der v0.7.10
|
|
131
|
+
Downloaded darling_core v0.21.3
|
|
132
|
+
Downloaded crypto-bigint v0.5.5
|
|
133
|
+
Downloaded const-oid v0.9.6
|
|
134
|
+
Downloaded soroban-spec-rust v25.0.1
|
|
135
|
+
Downloaded signature v2.2.0
|
|
136
|
+
Downloaded primeorder v0.13.6
|
|
137
|
+
Downloaded prettyplease v0.2.37
|
|
138
|
+
Downloaded num-traits v0.2.19
|
|
139
|
+
Downloaded indexmap v1.9.3
|
|
140
|
+
Downloaded ethnum v1.5.2
|
|
141
|
+
Downloaded deranged v0.5.5
|
|
142
|
+
Downloaded darling v0.21.3
|
|
143
|
+
Downloaded darling v0.20.11
|
|
144
|
+
Downloaded base64ct v1.8.0
|
|
145
|
+
Downloaded ark-std v0.4.0
|
|
146
|
+
Downloaded anyhow v1.0.100
|
|
147
|
+
Downloaded subtle v2.6.1
|
|
148
|
+
Downloaded static_assertions v1.1.0
|
|
149
|
+
Downloaded rand_chacha v0.3.1
|
|
150
|
+
Downloaded quote v1.0.41
|
|
151
|
+
Downloaded ppv-lite86 v0.2.21
|
|
152
|
+
Downloaded paste v1.0.15
|
|
153
|
+
Downloaded getrandom v0.2.16
|
|
154
|
+
Downloaded ff v0.13.1
|
|
155
|
+
Downloaded byteorder v1.5.0
|
|
156
|
+
Downloaded ark-serialize v0.4.2
|
|
157
|
+
Downloaded ark-poly v0.4.2
|
|
158
|
+
Downloaded proc-macro2 v1.0.103
|
|
159
|
+
Downloaded powerfmt v0.2.0
|
|
160
|
+
Downloaded p256 v0.13.2
|
|
161
|
+
Downloaded num-integer v0.1.46
|
|
162
|
+
Downloaded num-conv v0.1.0
|
|
163
|
+
Downloaded heck v0.5.0
|
|
164
|
+
Downloaded group v0.13.0
|
|
165
|
+
Downloaded glob v0.3.3
|
|
166
|
+
Downloaded elliptic-curve v0.13.8
|
|
167
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
168
|
+
Downloaded cpufeatures v0.2.17
|
|
169
|
+
Downloaded ark-ec v0.4.2
|
|
170
|
+
Downloaded ident_case v1.0.1
|
|
171
|
+
Downloaded iana-time-zone v0.1.64
|
|
172
|
+
Downloaded hex v0.4.3
|
|
173
|
+
Downloaded generic-array v0.14.9
|
|
174
|
+
Downloaded equivalent v1.0.2
|
|
175
|
+
Downloaded either v1.15.0
|
|
176
|
+
Downloaded ed25519 v2.2.3
|
|
177
|
+
Downloaded ecdsa v0.16.9
|
|
178
|
+
Downloaded digest v0.9.0
|
|
179
|
+
Downloaded derive_arbitrary v1.3.2
|
|
180
|
+
Downloaded data-encoding v2.9.0
|
|
181
|
+
Downloaded darling_macro v0.21.3
|
|
182
|
+
Downloaded ctor v0.5.0
|
|
183
|
+
Downloaded crypto-common v0.1.6
|
|
184
|
+
Downloaded crate-git-revision v0.0.6
|
|
185
|
+
Downloaded block-buffer v0.9.0
|
|
186
|
+
Downloaded cfg_eval v0.1.2
|
|
187
|
+
Downloaded cfg-if v1.0.4
|
|
188
|
+
Downloaded indexmap-nostd v0.4.0
|
|
189
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
190
|
+
Downloaded bytes-lit v0.0.5
|
|
191
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
192
|
+
Downloaded keccak v0.1.5
|
|
193
|
+
Downloaded include_dir_macros v0.7.4
|
|
194
|
+
Downloaded include_dir v0.7.4
|
|
195
|
+
Downloaded heck v0.4.1
|
|
196
|
+
Downloaded escape-bytes v0.1.1
|
|
197
|
+
Downloaded dtor v0.1.1
|
|
198
|
+
Downloaded downcast-rs v1.2.1
|
|
199
|
+
Downloaded digest v0.10.7
|
|
200
|
+
Downloaded darling_macro v0.20.11
|
|
201
|
+
Downloaded macro-string v0.1.4
|
|
202
|
+
Downloaded fnv v1.0.7
|
|
203
|
+
Downloaded hash32 v0.3.1
|
|
204
|
+
Downloaded stellar-xdr v23.0.0
|
|
205
|
+
Downloaded dyn-clone v1.0.20
|
|
206
|
+
Downloaded block-buffer v0.10.4
|
|
207
|
+
Compiling proc-macro2 v1.0.103
|
|
208
|
+
Compiling quote v1.0.41
|
|
209
|
+
Compiling unicode-ident v1.0.22
|
|
210
|
+
Compiling version_check v0.9.5
|
|
211
|
+
Compiling typenum v1.19.0
|
|
212
|
+
Compiling serde_core v1.0.228
|
|
213
|
+
Compiling serde v1.0.228
|
|
214
|
+
Compiling serde_json v1.0.145
|
|
215
|
+
Compiling memchr v2.7.6
|
|
216
|
+
Compiling itoa v1.0.15
|
|
217
|
+
Compiling ryu v1.0.20
|
|
79
218
|
Checking cfg-if v1.0.4
|
|
80
219
|
Checking subtle v2.6.1
|
|
81
220
|
Checking const-oid v0.9.6
|
|
82
221
|
Compiling libc v0.2.177
|
|
83
|
-
|
|
222
|
+
Compiling autocfg v1.5.0
|
|
223
|
+
Compiling fnv v1.0.7
|
|
224
|
+
Compiling strsim v0.11.1
|
|
225
|
+
Compiling ident_case v1.0.1
|
|
226
|
+
Compiling schemars v0.8.22
|
|
227
|
+
Compiling zerocopy v0.8.27
|
|
228
|
+
Compiling syn v1.0.109
|
|
84
229
|
Checking cpufeatures v0.2.17
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
Checking
|
|
94
|
-
Compiling
|
|
95
|
-
|
|
96
|
-
|
|
230
|
+
Compiling semver v1.0.27
|
|
231
|
+
Compiling paste v1.0.15
|
|
232
|
+
Compiling dyn-clone v1.0.20
|
|
233
|
+
Compiling either v1.15.0
|
|
234
|
+
Compiling thiserror v1.0.69
|
|
235
|
+
Compiling generic-array v0.14.9
|
|
236
|
+
Compiling data-encoding v2.9.0
|
|
237
|
+
Compiling num-traits v0.2.19
|
|
238
|
+
Checking itertools v0.10.5
|
|
239
|
+
Compiling ahash v0.8.12
|
|
240
|
+
Compiling ethnum v1.5.2
|
|
241
|
+
Compiling escape-bytes v0.1.1
|
|
242
|
+
Compiling rustc_version v0.4.1
|
|
243
|
+
Checking base64 v0.22.1
|
|
97
244
|
Checking equivalent v1.0.2
|
|
98
|
-
Checking
|
|
99
|
-
|
|
245
|
+
Checking hashbrown v0.16.0
|
|
246
|
+
Compiling prettyplease v0.2.37
|
|
247
|
+
Checking num-integer v0.1.46
|
|
248
|
+
Checking getrandom v0.2.16
|
|
100
249
|
Checking once_cell v1.21.3
|
|
101
|
-
Checking
|
|
102
|
-
|
|
103
|
-
Checking
|
|
104
|
-
|
|
105
|
-
Checking
|
|
106
|
-
Checking
|
|
107
|
-
Checking downcast-rs v1.2.1
|
|
250
|
+
Checking base16ct v0.2.0
|
|
251
|
+
Compiling libm v0.2.15
|
|
252
|
+
Checking rand_core v0.6.4
|
|
253
|
+
Compiling curve25519-dalek v4.1.3
|
|
254
|
+
Checking num-bigint v0.4.6
|
|
255
|
+
Checking indexmap v2.12.0
|
|
108
256
|
Checking indexmap-nostd v0.4.0
|
|
109
|
-
|
|
110
|
-
Compiling
|
|
111
|
-
Checking
|
|
112
|
-
Checking
|
|
257
|
+
Compiling crypto-common v0.1.6
|
|
258
|
+
Compiling block-buffer v0.10.4
|
|
259
|
+
Checking ppv-lite86 v0.2.21
|
|
260
|
+
Checking ff v0.13.1
|
|
261
|
+
Checking downcast-rs v1.2.1
|
|
113
262
|
Checking wasmparser-nostd v0.100.2
|
|
263
|
+
Compiling syn v2.0.108
|
|
264
|
+
Compiling digest v0.10.7
|
|
265
|
+
Checking group v0.13.0
|
|
266
|
+
Checking hashbrown v0.13.2
|
|
267
|
+
Compiling sha2 v0.10.9
|
|
268
|
+
Checking wasmparser v0.116.1
|
|
269
|
+
Checking rand_chacha v0.3.1
|
|
270
|
+
Checking rand v0.8.5
|
|
271
|
+
Checking byteorder v1.5.0
|
|
272
|
+
Checking smallvec v1.15.1
|
|
273
|
+
Compiling heapless v0.8.0
|
|
114
274
|
Checking spin v0.9.8
|
|
115
|
-
|
|
116
|
-
Checking
|
|
117
|
-
|
|
118
|
-
Checking
|
|
119
|
-
Checking
|
|
275
|
+
Compiling heck v0.5.0
|
|
276
|
+
Checking wasmi_arena v0.4.1
|
|
277
|
+
Checking hash32 v0.3.1
|
|
278
|
+
Checking wasmi_core v0.13.0
|
|
279
|
+
Checking stable_deref_trait v1.2.1
|
|
280
|
+
Compiling static_assertions v1.1.0
|
|
281
|
+
Compiling soroban-env-host v25.0.1
|
|
120
282
|
Checking keccak v0.1.5
|
|
121
|
-
|
|
283
|
+
Checking ark-std v0.4.0
|
|
122
284
|
Checking hex-literal v0.4.1
|
|
123
|
-
Compiling
|
|
124
|
-
Compiling
|
|
125
|
-
Checking unicode-ident v1.0.22
|
|
126
|
-
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
127
|
-
Checking thiserror v1.0.69
|
|
128
|
-
Checking proc-macro2 v1.0.103
|
|
129
|
-
Checking num-bigint v0.4.6
|
|
130
|
-
Checking opaque-debug v0.3.1
|
|
285
|
+
Compiling itertools v0.14.0
|
|
286
|
+
Compiling include_dir_macros v0.7.4
|
|
131
287
|
Checking glob v0.3.3
|
|
132
|
-
|
|
133
|
-
Checking
|
|
134
|
-
Checking crypto-common v0.1.6
|
|
135
|
-
Checking sec1 v0.7.3
|
|
136
|
-
Checking wasmi_core v0.13.0
|
|
137
|
-
Checking block-buffer v0.9.0
|
|
138
|
-
Checking wasmparser v0.116.1
|
|
139
|
-
Checking digest v0.9.0
|
|
140
|
-
Checking include_dir v0.7.4
|
|
141
|
-
Checking quote v1.0.41
|
|
142
|
-
Checking digest v0.10.7
|
|
143
|
-
Checking heck v0.4.1
|
|
144
|
-
Checking sha2 v0.9.9
|
|
288
|
+
Compiling anyhow v1.0.100
|
|
289
|
+
Checking opaque-debug v0.3.1
|
|
145
290
|
Checking base64 v0.21.7
|
|
146
|
-
Checking
|
|
147
|
-
Checking
|
|
148
|
-
Checking
|
|
149
|
-
Checking ahash v0.8.12
|
|
150
|
-
Checking anyhow v1.0.100
|
|
291
|
+
Checking heck v0.4.1
|
|
292
|
+
Checking include_dir v0.7.4
|
|
293
|
+
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
151
294
|
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
295
|
+
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
152
296
|
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
153
|
-
Checking
|
|
297
|
+
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
298
|
+
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
299
|
+
Checking oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
300
|
+
Compiling ark-serialize-derive v0.4.2
|
|
301
|
+
Compiling derivative v2.2.0
|
|
302
|
+
Compiling ark-ff-asm v0.4.2
|
|
303
|
+
Compiling ark-ff-macros v0.4.2
|
|
304
|
+
Compiling darling_core v0.21.3
|
|
305
|
+
Compiling darling_core v0.20.11
|
|
306
|
+
Compiling macro-string v0.1.4
|
|
307
|
+
Compiling serde_derive v1.0.228
|
|
308
|
+
Compiling zeroize_derive v1.4.2
|
|
309
|
+
Compiling cfg_eval v0.1.2
|
|
310
|
+
Compiling thiserror-impl v1.0.69
|
|
311
|
+
Compiling num-derive v0.4.2
|
|
312
|
+
Compiling curve25519-dalek-derive v0.1.1
|
|
313
|
+
Compiling soroban-builtin-sdk-macros v25.0.1
|
|
314
|
+
Compiling visibility v0.1.1
|
|
315
|
+
Compiling bytes-lit v0.0.5
|
|
316
|
+
Checking zeroize v1.8.2
|
|
317
|
+
Checking der v0.7.10
|
|
318
|
+
Checking crypto-bigint v0.5.5
|
|
319
|
+
Checking block-buffer v0.9.0
|
|
320
|
+
Checking digest v0.9.0
|
|
321
|
+
Checking sec1 v0.7.3
|
|
322
|
+
Checking sha2 v0.9.9
|
|
323
|
+
Checking signature v2.2.0
|
|
324
|
+
Checking ark-serialize v0.4.2
|
|
154
325
|
Checking hmac v0.12.1
|
|
155
|
-
Checking curve25519-dalek v4.1.3
|
|
156
326
|
Checking sha3 v0.10.8
|
|
157
|
-
Checking
|
|
158
|
-
Checking rand_core v0.6.4
|
|
159
|
-
Checking serde_json v1.0.145
|
|
160
|
-
Checking rfc6979 v0.4.0
|
|
161
|
-
Checking hashbrown v0.13.2
|
|
162
|
-
Checking itertools v0.14.0
|
|
163
|
-
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
164
|
-
Checking rand_chacha v0.3.1
|
|
165
|
-
Checking ff v0.13.1
|
|
166
|
-
Checking signature v2.2.0
|
|
167
|
-
Checking crypto-bigint v0.5.5
|
|
327
|
+
Checking elliptic-curve v0.13.8
|
|
168
328
|
Checking ed25519 v2.2.3
|
|
169
|
-
Checking
|
|
170
|
-
Checking group v0.13.0
|
|
171
|
-
Checking rand v0.8.5
|
|
172
|
-
Checking schemars v0.8.22
|
|
173
|
-
Checking ed25519-dalek v2.2.0
|
|
174
|
-
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
175
|
-
Checking ark-std v0.4.0
|
|
176
|
-
Checking ark-serialize v0.4.2
|
|
329
|
+
Checking rfc6979 v0.4.0
|
|
177
330
|
Checking ark-ff v0.4.2
|
|
178
|
-
|
|
179
|
-
Checking serde_with v3.15.1
|
|
331
|
+
Compiling darling_macro v0.20.11
|
|
180
332
|
Checking ecdsa v0.16.9
|
|
181
333
|
Checking primeorder v0.13.6
|
|
334
|
+
Compiling darling_macro v0.21.3
|
|
335
|
+
Checking hex v0.4.3
|
|
336
|
+
Checking ed25519-dalek v2.2.0
|
|
182
337
|
Checking k256 v0.13.4
|
|
183
338
|
Checking p256 v0.13.2
|
|
184
|
-
|
|
339
|
+
Compiling crate-git-revision v0.0.6
|
|
340
|
+
Compiling darling v0.20.11
|
|
341
|
+
Compiling darling v0.21.3
|
|
342
|
+
Compiling stellar-strkey v0.0.13
|
|
343
|
+
Compiling stellar-xdr v25.0.0
|
|
344
|
+
Compiling soroban-env-common v25.0.1
|
|
345
|
+
Compiling stellar-strkey v0.0.16
|
|
346
|
+
Compiling soroban-sdk v25.0.1
|
|
347
|
+
Compiling stellar-xdr v23.0.0
|
|
348
|
+
Compiling serde_with_macros v3.15.1
|
|
349
|
+
Compiling serde_with v3.15.1
|
|
185
350
|
Checking ark-poly v0.4.2
|
|
186
351
|
Checking ark-ec v0.4.2
|
|
352
|
+
Checking ark-bn254 v0.4.0
|
|
187
353
|
Checking ark-bls12-381 v0.4.0
|
|
188
354
|
Checking soroban-spec v23.4.0
|
|
189
355
|
Checking soroban-spec-typescript v23.1.4
|
|
190
356
|
Checking ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
357
|
+
Compiling soroban-spec v25.0.1
|
|
358
|
+
Compiling soroban-env-macros v25.0.1
|
|
359
|
+
Compiling soroban-spec-rust v25.0.1
|
|
360
|
+
Compiling soroban-sdk-macros v25.0.1
|
|
191
361
|
Checking utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
362
|
+
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
192
363
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
193
364
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
194
365
|
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
195
366
|
Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
367
|
+
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
196
368
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
197
369
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
198
370
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
199
|
-
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
200
371
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
372
|
+
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
201
373
|
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
202
374
|
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
203
|
-
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
204
375
|
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
205
|
-
Checking
|
|
376
|
+
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
206
377
|
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
207
378
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
208
|
-
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
209
379
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
210
380
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
211
381
|
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
212
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
213
|
-
⏱️ bash -c cargo clippy -- -D warnings:
|
|
382
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 28s
|
|
383
|
+
⏱️ bash -c cargo clippy -- -D warnings: 1:45.152 (m:ss.mmm)
|
|
214
384
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
215
385
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
216
386
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|