@layerzerolabs/protocol-stellar-v2 0.2.20 → 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 +783 -802
- package/.turbo/turbo-lint.log +320 -157
- package/.turbo/turbo-test.log +1414 -1457
- package/Cargo.lock +109 -108
- package/Cargo.toml +32 -18
- 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 +2 -2
- package/contracts/common-macros/src/lib.rs +27 -10
- 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/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__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 -9
- 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 +56 -15
- 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/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 +7 -27
- 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 +4 -6
- 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/{test_oapp_core.rs → oapp_core.rs} +4 -4
- package/contracts/oapps/oapp/src/tests/{test_oapp_options_type3.rs → oapp_options_type3.rs} +3 -4
- 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 +136 -74
- package/contracts/oapps/oft/src/extensions/pausable.rs +44 -10
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +170 -130
- package/contracts/oapps/oft/src/oft.rs +19 -12
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +1 -1
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +1 -1
- package/contracts/oapps/oft-core/Cargo.toml +1 -4
- package/contracts/oapps/oft-core/integration-tests/setup.rs +2 -2
- 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 +115 -60
- 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 +59 -14
- package/contracts/utils/Cargo.toml +0 -1
- package/contracts/utils/src/errors.rs +1 -1
- 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 +1 -1
- package/contracts/utils/src/ttl_configurable.rs +10 -4
- package/contracts/utils/src/upgradeable.rs +5 -5
- package/contracts/workers/dvn/Cargo.toml +5 -6
- package/contracts/workers/dvn/src/dvn.rs +2 -12
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +37 -19
- package/contracts/workers/dvn-fee-lib/src/lib.rs +12 -2
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +15 -13
- package/contracts/workers/executor/Cargo.toml +3 -0
- package/contracts/workers/executor/src/executor.rs +2 -12
- 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 +5 -0
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +1 -12
- package/contracts/workers/executor-fee-lib/src/lib.rs +8 -2
- package/contracts/workers/executor-helper/Cargo.toml +0 -1
- package/contracts/workers/price-feed/Cargo.toml +5 -0
- package/contracts/workers/price-feed/src/lib.rs +9 -4
- package/contracts/workers/price-feed/src/price_feed.rs +1 -11
- package/contracts/workers/worker/src/errors.rs +1 -1
- package/contracts/workers/worker/src/tests/setup.rs +1 -1
- package/contracts/workers/worker/src/tests/worker.rs +55 -41
- package/contracts/workers/worker/src/worker.rs +34 -25
- 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 +260 -257
- package/sdk/dist/generated/bml.d.ts +3 -3
- package/sdk/dist/generated/bml.js +4 -4
- package/sdk/dist/generated/counter.d.ts +295 -295
- package/sdk/dist/generated/counter.js +43 -43
- package/sdk/dist/generated/dvn.d.ts +91 -91
- package/sdk/dist/generated/dvn.js +24 -24
- package/sdk/dist/generated/dvn_fee_lib.d.ts +92 -92
- package/sdk/dist/generated/dvn_fee_lib.js +25 -25
- package/sdk/dist/generated/endpoint.d.ts +99 -99
- package/sdk/dist/generated/endpoint.js +16 -16
- package/sdk/dist/generated/executor.d.ts +91 -91
- package/sdk/dist/generated/executor.js +24 -24
- package/sdk/dist/generated/executor_fee_lib.d.ts +92 -92
- package/sdk/dist/generated/executor_fee_lib.js +25 -25
- package/sdk/dist/generated/executor_helper.d.ts +3 -3
- package/sdk/dist/generated/executor_helper.js +4 -4
- package/sdk/dist/generated/layerzero_view.d.ts +186 -186
- package/sdk/dist/generated/layerzero_view.js +35 -35
- package/sdk/dist/generated/oft.d.ts +366 -352
- package/sdk/dist/generated/oft.js +74 -79
- package/sdk/dist/generated/price_feed.d.ts +198 -198
- package/sdk/dist/generated/price_feed.js +39 -39
- package/sdk/dist/generated/sml.d.ts +99 -99
- package/sdk/dist/generated/sml.js +16 -16
- package/sdk/dist/generated/treasury.d.ts +99 -99
- package/sdk/dist/generated/treasury.js +16 -16
- package/sdk/dist/generated/uln302.d.ts +99 -99
- package/sdk/dist/generated/uln302.js +16 -16
- package/sdk/dist/generated/upgrader.d.ts +3 -3
- package/sdk/dist/generated/upgrader.js +3 -3
- package/sdk/package.json +1 -1
- package/sdk/test/suites/localnet.ts +84 -20
- package/contracts/ERROR_SPEC.md +0 -51
- package/contracts/endpoint-v2/ARCHITECTURE.md +0 -233
- /package/contracts/oapps/oapp/src/tests/{test_oapp_receiver.rs → oapp_receiver.rs} +0 -0
- /package/contracts/oapps/oapp/src/tests/{test_oapp_sender.rs → oapp_sender.rs} +0 -0
package/.turbo/turbo-lint.log
CHANGED
|
@@ -3,221 +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: Pulling fs layer
|
|
15
|
-
4617420e017b: Pulling fs layer
|
|
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
|
-
66f4137c2c7c: Waiting
|
|
28
|
-
8a4f031cd7ce: Waiting
|
|
29
|
-
a7d3f750d5ec: Waiting
|
|
30
|
-
2ff845d4f468: Waiting
|
|
31
|
-
2c1ce468d9f3: Waiting
|
|
32
|
-
1b86cc28e881: Waiting
|
|
33
|
-
2965c99ac5df: Waiting
|
|
34
|
-
f83e34e44849: Waiting
|
|
35
|
-
8bc2eeec2bb3: Waiting
|
|
36
|
-
889cdda75b95: Waiting
|
|
37
|
-
f6bd9104d248: Verifying Checksum
|
|
38
|
-
f6bd9104d248: Download complete
|
|
39
|
-
f6bd9104d248: Pull complete
|
|
40
|
-
889cdda75b95: Verifying Checksum
|
|
41
|
-
889cdda75b95: Download complete
|
|
42
|
-
a7d3f750d5ec: Verifying Checksum
|
|
43
|
-
a7d3f750d5ec: Download complete
|
|
44
|
-
8a4f031cd7ce: Verifying Checksum
|
|
45
|
-
8a4f031cd7ce: Download complete
|
|
46
|
-
e9886d99af76: Verifying Checksum
|
|
47
|
-
e9886d99af76: Download complete
|
|
48
|
-
2c1ce468d9f3: Download complete
|
|
49
|
-
4617420e017b: Verifying Checksum
|
|
50
|
-
4617420e017b: Download complete
|
|
51
|
-
f83e34e44849: Download complete
|
|
52
|
-
2ff845d4f468: Verifying Checksum
|
|
53
|
-
2ff845d4f468: Download complete
|
|
54
|
-
1b86cc28e881: Verifying Checksum
|
|
55
|
-
1b86cc28e881: Download complete
|
|
56
|
-
8bc2eeec2bb3: Verifying Checksum
|
|
57
|
-
8bc2eeec2bb3: Download complete
|
|
58
|
-
2965c99ac5df: Verifying Checksum
|
|
59
|
-
2965c99ac5df: Download complete
|
|
60
|
-
66f4137c2c7c: Verifying Checksum
|
|
61
|
-
66f4137c2c7c: Download complete
|
|
62
|
-
4617420e017b: Pull complete
|
|
63
|
-
e9886d99af76: Pull complete
|
|
64
|
-
889cdda75b95: Pull complete
|
|
65
|
-
a7d3f750d5ec: Pull complete
|
|
66
|
-
8a4f031cd7ce: Pull complete
|
|
67
|
-
2ff845d4f468: Pull complete
|
|
68
|
-
2c1ce468d9f3: Pull complete
|
|
69
|
-
1b86cc28e881: Pull complete
|
|
70
|
-
f83e34e44849: Pull complete
|
|
71
|
-
8bc2eeec2bb3: Pull complete
|
|
72
|
-
2965c99ac5df: Pull complete
|
|
73
|
-
66f4137c2c7c: Pull complete
|
|
74
|
-
Digest: sha256:635ca108241d5962b99bfce73582af12fbeea76e530b326fdcfc7224fa2ca257
|
|
75
|
-
Status: Image is up to date for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
76
|
-
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
77
|
-
✅ 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
|
|
78
11
|
👤 Running container as UID:GID 1001:1001
|
|
79
12
|
🌍 Using 5 default environment variable(s) for stellar
|
|
80
13
|
📜 Executing custom script: cargo clippy -- -D warnings
|
|
81
14
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
82
15
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
83
16
|
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
84
|
-
$ 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
|
|
85
218
|
Checking cfg-if v1.0.4
|
|
86
219
|
Checking subtle v2.6.1
|
|
87
220
|
Checking const-oid v0.9.6
|
|
88
221
|
Compiling libc v0.2.177
|
|
89
|
-
|
|
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
|
|
90
229
|
Checking cpufeatures v0.2.17
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
Checking
|
|
100
|
-
Compiling
|
|
101
|
-
|
|
102
|
-
|
|
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
|
|
103
244
|
Checking equivalent v1.0.2
|
|
104
245
|
Checking hashbrown v0.16.0
|
|
105
|
-
|
|
106
|
-
Checking base64 v0.22.1
|
|
107
|
-
Checking ethnum v1.5.2
|
|
108
|
-
Checking escape-bytes v0.1.1
|
|
109
|
-
Checking stellar-strkey v0.0.13
|
|
110
|
-
Checking once_cell v1.21.3
|
|
246
|
+
Compiling prettyplease v0.2.37
|
|
111
247
|
Checking num-integer v0.1.46
|
|
112
|
-
Checking
|
|
113
|
-
Checking
|
|
114
|
-
Checking
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
Checking itertools v0.10.5
|
|
119
|
-
Checking indexmap v2.12.0
|
|
120
|
-
Checking smallvec v1.15.1
|
|
121
|
-
Checking wasmi_arena v0.4.1
|
|
122
|
-
Checking spin v0.9.8
|
|
123
|
-
Checking wasmparser-nostd v0.100.2
|
|
248
|
+
Checking getrandom v0.2.16
|
|
249
|
+
Checking once_cell v1.21.3
|
|
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
|
|
124
254
|
Checking num-bigint v0.4.6
|
|
125
|
-
Checking
|
|
126
|
-
Checking
|
|
127
|
-
Compiling
|
|
128
|
-
Compiling
|
|
255
|
+
Checking indexmap v2.12.0
|
|
256
|
+
Checking indexmap-nostd v0.4.0
|
|
257
|
+
Compiling crypto-common v0.1.6
|
|
258
|
+
Compiling block-buffer v0.10.4
|
|
129
259
|
Checking ppv-lite86 v0.2.21
|
|
260
|
+
Checking ff v0.13.1
|
|
261
|
+
Checking downcast-rs v1.2.1
|
|
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
|
|
130
268
|
Checking wasmparser v0.116.1
|
|
131
|
-
Checking
|
|
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
|
|
274
|
+
Checking spin v0.9.8
|
|
275
|
+
Compiling heck v0.5.0
|
|
276
|
+
Checking wasmi_arena v0.4.1
|
|
277
|
+
Checking hash32 v0.3.1
|
|
132
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
|
|
282
|
+
Checking keccak v0.1.5
|
|
283
|
+
Checking ark-std v0.4.0
|
|
133
284
|
Checking hex-literal v0.4.1
|
|
134
|
-
Compiling
|
|
135
|
-
Compiling
|
|
136
|
-
Checking hashbrown v0.13.2
|
|
137
|
-
Checking unicode-ident v1.0.22
|
|
138
|
-
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
139
|
-
Checking thiserror v1.0.69
|
|
140
|
-
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
285
|
+
Compiling itertools v0.14.0
|
|
286
|
+
Compiling include_dir_macros v0.7.4
|
|
141
287
|
Checking glob v0.3.3
|
|
288
|
+
Compiling anyhow v1.0.100
|
|
142
289
|
Checking opaque-debug v0.3.1
|
|
143
|
-
Checking heck v0.4.1
|
|
144
290
|
Checking base64 v0.21.7
|
|
145
|
-
Checking
|
|
146
|
-
Checking heck v0.5.0
|
|
147
|
-
Checking anyhow v1.0.100
|
|
291
|
+
Checking heck v0.4.1
|
|
148
292
|
Checking include_dir v0.7.4
|
|
149
|
-
Checking
|
|
150
|
-
Checking block-buffer v0.10.4
|
|
151
|
-
Checking getrandom v0.2.16
|
|
152
|
-
Checking sec1 v0.7.3
|
|
153
|
-
Checking block-buffer v0.9.0
|
|
154
|
-
Checking digest v0.9.0
|
|
155
|
-
Checking itertools v0.14.0
|
|
156
|
-
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
293
|
+
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
157
294
|
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
158
|
-
Checking rand_core v0.6.4
|
|
159
295
|
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
160
|
-
Checking
|
|
161
|
-
Checking
|
|
162
|
-
Checking
|
|
163
|
-
Checking
|
|
296
|
+
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
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
|
|
164
318
|
Checking crypto-bigint v0.5.5
|
|
165
|
-
Checking
|
|
166
|
-
Checking
|
|
167
|
-
Checking
|
|
168
|
-
Checking sha2 v0.
|
|
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
|
|
169
323
|
Checking signature v2.2.0
|
|
324
|
+
Checking ark-serialize v0.4.2
|
|
170
325
|
Checking hmac v0.12.1
|
|
171
|
-
Checking curve25519-dalek v4.1.3
|
|
172
326
|
Checking sha3 v0.10.8
|
|
173
|
-
Checking
|
|
174
|
-
Checking ark-std v0.4.0
|
|
175
|
-
Checking rfc6979 v0.4.0
|
|
327
|
+
Checking elliptic-curve v0.13.8
|
|
176
328
|
Checking ed25519 v2.2.3
|
|
177
|
-
Checking
|
|
329
|
+
Checking rfc6979 v0.4.0
|
|
178
330
|
Checking ark-ff v0.4.2
|
|
179
|
-
|
|
180
|
-
Checking serde_json v1.0.145
|
|
181
|
-
Checking ed25519-dalek v2.2.0
|
|
182
|
-
Checking elliptic-curve v0.13.8
|
|
183
|
-
Checking hex v0.4.3
|
|
184
|
-
Checking schemars v0.8.22
|
|
331
|
+
Compiling darling_macro v0.20.11
|
|
185
332
|
Checking ecdsa v0.16.9
|
|
186
333
|
Checking primeorder v0.13.6
|
|
187
|
-
|
|
334
|
+
Compiling darling_macro v0.21.3
|
|
335
|
+
Checking hex v0.4.3
|
|
336
|
+
Checking ed25519-dalek v2.2.0
|
|
188
337
|
Checking k256 v0.13.4
|
|
189
|
-
Checking
|
|
190
|
-
|
|
338
|
+
Checking p256 v0.13.2
|
|
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
|
|
191
350
|
Checking ark-poly v0.4.2
|
|
192
351
|
Checking ark-ec v0.4.2
|
|
352
|
+
Checking ark-bn254 v0.4.0
|
|
193
353
|
Checking ark-bls12-381 v0.4.0
|
|
194
354
|
Checking soroban-spec v23.4.0
|
|
195
355
|
Checking soroban-spec-typescript v23.1.4
|
|
196
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
|
|
197
361
|
Checking utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
198
362
|
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
199
363
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
200
364
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
201
365
|
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
202
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)
|
|
203
368
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
204
369
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
205
370
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
206
371
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
207
372
|
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
208
|
-
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
209
373
|
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
210
|
-
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
211
|
-
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
212
374
|
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
375
|
+
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
376
|
+
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
213
377
|
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
214
|
-
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
215
378
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
216
379
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
217
380
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
218
381
|
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
219
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
220
|
-
⏱️ 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)
|
|
221
384
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
222
385
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
223
386
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|