@layerzerolabs/protocol-stellar-v2 0.2.40 → 0.2.43
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 +312 -397
- package/.turbo/turbo-lint.log +185 -245
- package/.turbo/turbo-test.log +1846 -1942
- package/Cargo.lock +22 -127
- package/Cargo.toml +4 -6
- package/contracts/common-macros/src/lib.rs +38 -15
- package/contracts/common-macros/src/lz_contract.rs +12 -21
- package/contracts/common-macros/src/tests/lz_contract.rs +17 -8
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +20 -0
- package/contracts/common-macros/src/upgradeable.rs +37 -30
- package/contracts/endpoint-v2/src/endpoint_v2.rs +4 -3
- package/contracts/endpoint-v2/src/errors.rs +2 -2
- package/contracts/endpoint-v2/src/messaging_channel.rs +11 -0
- package/contracts/endpoint-v2/src/messaging_composer.rs +1 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -25
- package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +50 -10
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +6 -35
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +50 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +78 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/insert_and_drain_pending_nonces.rs +272 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +10 -5
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +30 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +25 -6
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +13 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +13 -10
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +15 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +5 -3
- package/contracts/macro-integration-tests/tests/runtime/ownable/mod.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +14 -12
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +3 -9
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +24 -1
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +3 -3
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_rbac.rs +44 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_auth_trait.rs +28 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_auth_trait.stderr +397 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.rs +1 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/fail/missing_lz_receive_internal.stderr +10 -10
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +4 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +7 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/minimal_contract.rs +5 -4
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/struct_with_fields.rs +2 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/rbac.rs +44 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +5 -3
- package/contracts/oapps/counter/src/counter.rs +4 -3
- package/contracts/oapps/counter/src/tests/mod.rs +16 -1
- package/contracts/oapps/counter/src/tests/test_counter.rs +5 -2
- package/contracts/oapps/oapp/src/oapp_core.rs +22 -8
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +7 -5
- package/contracts/oapps/oapp/src/tests/mod.rs +21 -0
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +14 -11
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +17 -10
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +6 -3
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +5 -3
- package/contracts/oapps/oapp/src/tests/test_macros.rs +25 -0
- package/contracts/oapps/oapp-macros/src/generators.rs +12 -9
- package/contracts/oapps/oapp-macros/src/lib.rs +1 -1
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +15 -7
- package/contracts/oapps/oft/integration-tests/setup.rs +22 -4
- package/contracts/oapps/oft/integration-tests/utils.rs +94 -13
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -10
- package/contracts/oapps/oft/src/extensions/pausable.rs +31 -10
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +9 -4
- package/contracts/oapps/oft/src/oft.rs +3 -3
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +39 -27
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +38 -24
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +87 -69
- package/contracts/oapps/oft/src/tests/oft_types/lock_unlock.rs +1 -0
- package/contracts/oapps/oft-core/integration-tests/setup.rs +28 -3
- package/contracts/oapps/oft-core/src/oft_core.rs +11 -6
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +20 -20
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +33 -3
- package/contracts/upgrader/src/lib.rs +67 -30
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract3.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract4.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +50 -4
- package/contracts/utils/src/ownable.rs +16 -5
- package/contracts/utils/src/tests/ownable.rs +39 -39
- package/contracts/utils/src/upgradeable.rs +60 -17
- package/docs/oapp-guide.md +18 -13
- package/package.json +5 -5
- package/sdk/.turbo/turbo-test.log +359 -348
- package/sdk/dist/generated/bml.d.ts +4 -4
- package/sdk/dist/generated/bml.js +6 -6
- package/sdk/dist/generated/counter.d.ts +269 -123
- package/sdk/dist/generated/counter.js +45 -25
- package/sdk/dist/generated/dvn.d.ts +4 -6
- package/sdk/dist/generated/dvn.js +8 -8
- package/sdk/dist/generated/dvn_fee_lib.d.ts +8 -10
- package/sdk/dist/generated/dvn_fee_lib.js +8 -8
- package/sdk/dist/generated/endpoint.d.ts +9 -9
- package/sdk/dist/generated/endpoint.js +9 -9
- package/sdk/dist/generated/executor.d.ts +9 -11
- package/sdk/dist/generated/executor.js +11 -11
- package/sdk/dist/generated/executor_fee_lib.d.ts +9 -11
- package/sdk/dist/generated/executor_fee_lib.js +11 -11
- package/sdk/dist/generated/executor_helper.d.ts +4 -4
- package/sdk/dist/generated/executor_helper.js +6 -6
- package/sdk/dist/generated/layerzero_view.d.ts +9 -11
- package/sdk/dist/generated/layerzero_view.js +11 -11
- package/sdk/dist/generated/oft.d.ts +323 -156
- package/sdk/dist/generated/oft.js +65 -43
- package/sdk/dist/generated/price_feed.d.ts +8 -10
- package/sdk/dist/generated/price_feed.js +8 -8
- package/sdk/dist/generated/sac_manager.d.ts +8 -8
- package/sdk/dist/generated/sac_manager.js +6 -6
- package/sdk/dist/generated/sml.d.ts +9 -9
- package/sdk/dist/generated/sml.js +9 -9
- package/sdk/dist/generated/treasury.d.ts +9 -9
- package/sdk/dist/generated/treasury.js +9 -9
- package/sdk/dist/generated/uln302.d.ts +9 -9
- package/sdk/dist/generated/uln302.js +9 -9
- package/sdk/dist/generated/upgrader.d.ts +25 -16
- package/sdk/dist/generated/upgrader.js +5 -5
- package/sdk/package.json +1 -1
- package/sdk/test/counter-sml.test.ts +20 -0
- package/sdk/test/counter-uln.test.ts +20 -0
- package/sdk/test/oft-sml.test.ts +22 -0
- package/sdk/test/upgrader.test.ts +1 -0
- package/ts-bindings-gen.toml +67 -0
- package/turbo.json +1 -8
- package/tools/ts-bindings-gen/Cargo.toml +0 -16
- package/tools/ts-bindings-gen/src/main.rs +0 -214
package/.turbo/turbo-lint.log
CHANGED
|
@@ -2,191 +2,143 @@
|
|
|
2
2
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 lint /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
3
3
|
> pnpm exec lz-tool --script "cargo clippy -- -D warnings" stellar
|
|
4
4
|
|
|
5
|
+
🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
5
6
|
📦 Using 4 default cache volume(s) for stellar
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
🔧 User volumes override 1 default volume(s)
|
|
8
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
9
|
+
🔧 stellar version: 25.1.0
|
|
10
|
+
(node:62791) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/runner/work/monorepo-internal/monorepo-internal/configs/vm-tooling/values/docker-image-repo.ts is not specified and it doesn't parse as CommonJS.
|
|
9
11
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
10
12
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
11
13
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
12
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
15
|
+
Error response from daemon: No such image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
16
|
+
|
|
17
|
+
📥 Pulling Docker image from: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
18
|
+
$ docker pull 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
19
|
+
stellar_25.1.0: Pulling from layerzerolabs/stellar-tooling
|
|
20
|
+
f6bd9104d248: Pulling fs layer
|
|
21
|
+
4617420e017b: Pulling fs layer
|
|
22
|
+
beaaf8a7146e: Pulling fs layer
|
|
23
|
+
3e1d87a413fa: Pulling fs layer
|
|
24
|
+
a0f6971ecbd3: Pulling fs layer
|
|
25
|
+
92a1b3d31b96: Pulling fs layer
|
|
26
|
+
fb456ca5475e: Pulling fs layer
|
|
27
|
+
2c1ce468d9f3: Pulling fs layer
|
|
28
|
+
963aa7b66e91: Pulling fs layer
|
|
29
|
+
efd28cb7ba78: Pulling fs layer
|
|
30
|
+
14f775f5d67b: Pulling fs layer
|
|
31
|
+
3e1d87a413fa: Waiting
|
|
32
|
+
3f562c99cbe3: Pulling fs layer
|
|
33
|
+
5fa3a944df97: Pulling fs layer
|
|
34
|
+
2c1ce468d9f3: Waiting
|
|
35
|
+
a0f6971ecbd3: Waiting
|
|
36
|
+
92a1b3d31b96: Waiting
|
|
37
|
+
5fa3a944df97: Waiting
|
|
38
|
+
fb456ca5475e: Waiting
|
|
39
|
+
963aa7b66e91: Waiting
|
|
40
|
+
14f775f5d67b: Waiting
|
|
41
|
+
3f562c99cbe3: Waiting
|
|
42
|
+
efd28cb7ba78: Waiting
|
|
43
|
+
f6bd9104d248: Verifying Checksum
|
|
44
|
+
f6bd9104d248: Download complete
|
|
45
|
+
3e1d87a413fa: Verifying Checksum
|
|
46
|
+
3e1d87a413fa: Download complete
|
|
47
|
+
f6bd9104d248: Pull complete
|
|
48
|
+
a0f6971ecbd3: Download complete
|
|
49
|
+
92a1b3d31b96: Verifying Checksum
|
|
50
|
+
92a1b3d31b96: Download complete
|
|
51
|
+
beaaf8a7146e: Verifying Checksum
|
|
52
|
+
beaaf8a7146e: Download complete
|
|
53
|
+
2c1ce468d9f3: Verifying Checksum
|
|
54
|
+
2c1ce468d9f3: Download complete
|
|
55
|
+
fb456ca5475e: Verifying Checksum
|
|
56
|
+
fb456ca5475e: Download complete
|
|
57
|
+
4617420e017b: Verifying Checksum
|
|
58
|
+
4617420e017b: Download complete
|
|
59
|
+
14f775f5d67b: Download complete
|
|
60
|
+
efd28cb7ba78: Download complete
|
|
61
|
+
3f562c99cbe3: Verifying Checksum
|
|
62
|
+
3f562c99cbe3: Download complete
|
|
63
|
+
5fa3a944df97: Verifying Checksum
|
|
64
|
+
5fa3a944df97: Download complete
|
|
65
|
+
963aa7b66e91: Download complete
|
|
66
|
+
4617420e017b: Pull complete
|
|
67
|
+
beaaf8a7146e: Pull complete
|
|
68
|
+
3e1d87a413fa: Pull complete
|
|
69
|
+
a0f6971ecbd3: Pull complete
|
|
70
|
+
92a1b3d31b96: Pull complete
|
|
71
|
+
fb456ca5475e: Pull complete
|
|
72
|
+
2c1ce468d9f3: Pull complete
|
|
73
|
+
963aa7b66e91: Pull complete
|
|
74
|
+
efd28cb7ba78: Pull complete
|
|
75
|
+
14f775f5d67b: Pull complete
|
|
76
|
+
3f562c99cbe3: Pull complete
|
|
77
|
+
5fa3a944df97: Pull complete
|
|
78
|
+
Digest: sha256:fa3b739bf5c746bcb374b6fff2f13f253c8694b18fd0d9faa4e3b33a13b82781
|
|
79
|
+
Status: Image is up to date for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
80
|
+
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
81
|
+
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
82
|
+
👤 Running container as UID:GID 1001:1001
|
|
83
|
+
🌍 Using 5 default environment variable(s) for stellar
|
|
84
|
+
📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
85
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
86
|
+
$ 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-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
|
|
87
|
+
info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
|
|
88
|
+
info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
|
|
89
|
+
info: component 'clippy' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
90
|
+
info: component 'rust-std' for target 'wasm32v1-none' is up to date
|
|
91
|
+
info: component 'rustfmt' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
92
|
+
|
|
93
|
+
1.90.0-x86_64-unknown-linux-gnu unchanged - rustc 1.90.0 (1159e78c4 2025-09-14)
|
|
94
|
+
|
|
95
|
+
info: checking for self-update
|
|
96
|
+
⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 556.897ms
|
|
97
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
98
|
+
📦 Using 4 default cache volume(s) for stellar
|
|
99
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
100
|
+
🔧 stellar version: 25.1.0
|
|
101
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
102
|
+
sha256:314e086933eed3b936567f54f10bcac74de514b93d4841d04eca14b97756d33b
|
|
103
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
15
104
|
👤 Running container as UID:GID 1001:1001
|
|
16
105
|
🌍 Using 5 default environment variable(s) for stellar
|
|
17
106
|
📜 Executing custom script: cargo clippy -- -D warnings
|
|
18
|
-
$ 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.
|
|
107
|
+
$ 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.1.0 bash -c $'cargo clippy -- -D warnings'
|
|
108
|
+
Blocking waiting for file lock on package cache
|
|
19
109
|
Updating crates.io index
|
|
110
|
+
Blocking waiting for file lock on package cache
|
|
111
|
+
Blocking waiting for file lock on package cache
|
|
20
112
|
Downloading crates ...
|
|
21
|
-
Downloaded
|
|
22
|
-
Downloaded
|
|
23
|
-
Downloaded
|
|
24
|
-
Downloaded
|
|
25
|
-
Downloaded
|
|
26
|
-
Downloaded schemars v1.0.5
|
|
113
|
+
Downloaded iana-time-zone v0.1.64
|
|
114
|
+
Downloaded itoa v1.0.15
|
|
115
|
+
Downloaded deranged v0.5.5
|
|
116
|
+
Downloaded data-encoding v2.9.0
|
|
117
|
+
Downloaded getrandom v0.2.16
|
|
27
118
|
Downloaded zeroize_derive v1.4.2
|
|
28
|
-
Downloaded
|
|
29
|
-
Downloaded
|
|
30
|
-
Downloaded
|
|
31
|
-
Downloaded
|
|
32
|
-
Downloaded thiserror-impl v1.0.69
|
|
33
|
-
Downloaded wasmi_arena v0.4.1
|
|
34
|
-
Downloaded zeroize v1.8.2
|
|
119
|
+
Downloaded keccak v0.1.5
|
|
120
|
+
Downloaded num-conv v0.1.0
|
|
121
|
+
Downloaded base64ct v1.8.0
|
|
122
|
+
Downloaded time-core v0.1.6
|
|
35
123
|
Downloaded quote v1.0.41
|
|
36
|
-
Downloaded
|
|
37
|
-
Downloaded
|
|
38
|
-
Downloaded
|
|
39
|
-
Downloaded
|
|
124
|
+
Downloaded time-macros v0.2.24
|
|
125
|
+
Downloaded unicode-ident v1.0.22
|
|
126
|
+
Downloaded ryu v1.0.20
|
|
127
|
+
Downloaded proc-macro2 v1.0.103
|
|
128
|
+
Downloaded memchr v2.7.6
|
|
129
|
+
Downloaded schemars v1.0.5
|
|
130
|
+
Downloaded hashbrown v0.16.0
|
|
40
131
|
Downloaded time v0.3.44
|
|
41
|
-
Downloaded
|
|
132
|
+
Downloaded libm v0.2.15
|
|
133
|
+
Downloaded serde_with v3.15.1
|
|
134
|
+
Downloaded chrono v0.4.42
|
|
42
135
|
Downloaded serde_json v1.0.145
|
|
43
|
-
Downloaded
|
|
44
|
-
Downloaded wasmparser v0.116.1
|
|
45
|
-
Downloaded macro-string v0.1.4
|
|
136
|
+
Downloaded indexmap v2.12.0
|
|
46
137
|
Downloaded zerocopy v0.8.27
|
|
47
|
-
Downloaded
|
|
48
|
-
Downloaded indexmap v1.9.3
|
|
49
|
-
Downloaded glob v0.3.3
|
|
138
|
+
Downloaded serde_with_macros v3.15.1
|
|
50
139
|
Downloaded syn v2.0.108
|
|
51
|
-
Downloaded memchr v2.7.6
|
|
52
|
-
Downloaded k256 v0.13.4
|
|
53
|
-
Downloaded iana-time-zone v0.1.64
|
|
54
|
-
Downloaded dyn-clone v1.0.20
|
|
55
|
-
Downloaded crypto-bigint v0.5.5
|
|
56
|
-
Downloaded ark-serialize v0.4.2
|
|
57
|
-
Downloaded downcast-rs v1.2.1
|
|
58
|
-
Downloaded deranged v0.5.5
|
|
59
|
-
Downloaded darling_core v0.20.11
|
|
60
|
-
Downloaded once_cell v1.21.3
|
|
61
|
-
Downloaded darling_core v0.21.3
|
|
62
140
|
Downloaded libc v0.2.177
|
|
63
|
-
|
|
64
|
-
Downloaded soroban-env-host v25.0.1
|
|
65
|
-
Downloaded base64 v0.21.7
|
|
66
|
-
Downloaded num-bigint v0.4.6
|
|
67
|
-
Downloaded itoa v1.0.15
|
|
68
|
-
Downloaded ident_case v1.0.1
|
|
69
|
-
Downloaded hex-literal v0.4.1
|
|
70
|
-
Downloaded heck v0.4.1
|
|
71
|
-
Downloaded heapless v0.8.0
|
|
72
|
-
Downloaded hashbrown v0.12.3
|
|
73
|
-
Downloaded equivalent v1.0.2
|
|
74
|
-
Downloaded ed25519-dalek v2.2.0
|
|
75
|
-
Downloaded ed25519 v2.2.3
|
|
76
|
-
Downloaded darling v0.20.11
|
|
77
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
78
|
-
Downloaded sha3 v0.10.8
|
|
79
|
-
Downloaded cfg-if v1.0.4
|
|
80
|
-
Downloaded byteorder v1.5.0
|
|
81
|
-
Downloaded base16ct v0.2.0
|
|
82
|
-
Downloaded serde_with v3.15.1
|
|
83
|
-
Downloaded num-derive v0.4.2
|
|
84
|
-
Downloaded num-conv v0.1.0
|
|
85
|
-
Downloaded itertools v0.10.5
|
|
86
|
-
Downloaded indexmap v2.12.0
|
|
87
|
-
Downloaded hash32 v0.3.1
|
|
88
|
-
Downloaded group v0.13.0
|
|
89
|
-
Downloaded dtor v0.1.1
|
|
90
|
-
Downloaded derive_arbitrary v1.3.2
|
|
91
|
-
Downloaded darling_macro v0.21.3
|
|
92
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
93
|
-
Downloaded crypto-common v0.1.6
|
|
94
|
-
Downloaded crate-git-revision v0.0.6
|
|
95
|
-
Downloaded base64 v0.22.1
|
|
96
|
-
Downloaded ark-std v0.4.0
|
|
97
|
-
Downloaded ark-ff-macros v0.4.2
|
|
98
|
-
Downloaded ark-ff-asm v0.4.2
|
|
99
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
100
|
-
Downloaded arbitrary v1.3.2
|
|
101
|
-
Downloaded rand v0.8.5
|
|
102
|
-
Downloaded num-traits v0.2.19
|
|
103
|
-
Downloaded keccak v0.1.5
|
|
104
|
-
Downloaded itertools v0.14.0
|
|
105
|
-
Downloaded include_dir_macros v0.7.4
|
|
106
|
-
Downloaded include_dir v0.7.4
|
|
107
|
-
Downloaded hmac v0.12.1
|
|
108
|
-
Downloaded hashbrown v0.16.0
|
|
109
|
-
Downloaded getrandom v0.2.16
|
|
110
|
-
Downloaded ecdsa v0.16.9
|
|
111
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
112
|
-
Downloaded bytes-lit v0.0.5
|
|
113
|
-
Downloaded block-buffer v0.9.0
|
|
114
|
-
Downloaded anyhow v1.0.100
|
|
115
|
-
Downloaded soroban-sdk v25.1.1
|
|
116
|
-
Downloaded num-integer v0.1.46
|
|
117
|
-
Downloaded indexmap-nostd v0.4.0
|
|
118
|
-
Downloaded heck v0.5.0
|
|
119
|
-
Downloaded fnv v1.0.7
|
|
120
|
-
Downloaded elliptic-curve v0.13.8
|
|
121
|
-
Downloaded digest v0.10.7
|
|
122
|
-
Downloaded derivative v2.2.0
|
|
123
|
-
Downloaded data-encoding v2.9.0
|
|
124
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
125
|
-
Downloaded prettyplease v0.2.37
|
|
126
|
-
Downloaded paste v1.0.15
|
|
127
|
-
Downloaded p256 v0.13.2
|
|
128
|
-
Downloaded der v0.7.10
|
|
129
|
-
Downloaded ark-poly v0.4.2
|
|
130
|
-
Downloaded serde_core v1.0.228
|
|
131
|
-
Downloaded proc-macro2 v1.0.103
|
|
132
|
-
Downloaded libm v0.2.15
|
|
133
|
-
Downloaded cpufeatures v0.2.17
|
|
134
|
-
Downloaded ark-ff v0.4.2
|
|
135
|
-
Downloaded serde_derive v1.0.228
|
|
136
|
-
Downloaded serde v1.0.228
|
|
137
|
-
Downloaded schemars v0.9.0
|
|
138
|
-
Downloaded primeorder v0.13.6
|
|
139
|
-
Downloaded ppv-lite86 v0.2.21
|
|
140
|
-
Downloaded escape-bytes v0.1.1
|
|
141
|
-
Downloaded version_check v0.9.5
|
|
142
|
-
Downloaded unicode-ident v1.0.22
|
|
143
|
-
Downloaded time-macros v0.2.24
|
|
144
|
-
Downloaded static_assertions v1.1.0
|
|
145
|
-
Downloaded spki v0.7.3
|
|
146
|
-
Downloaded soroban-env-common v25.0.1
|
|
147
|
-
Downloaded soroban-sdk-macros v25.1.1
|
|
148
|
-
Downloaded soroban-env-macros v25.0.1
|
|
149
|
-
Downloaded signature v2.2.0
|
|
150
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
151
|
-
Downloaded sha2 v0.10.9
|
|
152
|
-
Downloaded semver v1.0.27
|
|
153
|
-
Downloaded sec1 v0.7.3
|
|
154
|
-
Downloaded schemars v0.8.22
|
|
155
|
-
Downloaded ryu v1.0.20
|
|
156
|
-
Downloaded ref-cast-impl v1.0.25
|
|
157
|
-
Downloaded ref-cast v1.0.25
|
|
158
|
-
Downloaded rand_core v0.6.4
|
|
159
|
-
Downloaded rand_chacha v0.3.1
|
|
160
|
-
Downloaded powerfmt v0.2.0
|
|
161
|
-
Downloaded wasmi_core v0.13.0
|
|
162
|
-
Downloaded visibility v0.1.1
|
|
163
|
-
Downloaded time-core v0.1.6
|
|
164
|
-
Downloaded thiserror v1.0.69
|
|
165
|
-
Downloaded strsim v0.11.1
|
|
166
|
-
Downloaded stellar-strkey v0.0.16
|
|
167
|
-
Downloaded stellar-strkey v0.0.13
|
|
168
|
-
Downloaded stable_deref_trait v1.2.1
|
|
169
|
-
Downloaded stellar-xdr v25.0.0
|
|
170
|
-
Downloaded sha2 v0.9.9
|
|
171
|
-
Downloaded serde_with_macros v3.15.1
|
|
172
|
-
Downloaded rustc_version v0.4.1
|
|
173
|
-
Downloaded rfc6979 v0.4.0
|
|
174
|
-
Downloaded darling_macro v0.20.11
|
|
175
|
-
Downloaded ark-ec v0.4.2
|
|
176
|
-
Downloaded ahash v0.8.12
|
|
177
|
-
Downloaded hashbrown v0.13.2
|
|
178
|
-
Downloaded curve25519-dalek v4.1.3
|
|
179
|
-
Downloaded chrono v0.4.42
|
|
180
|
-
Downloaded opaque-debug v0.3.1
|
|
181
|
-
Downloaded generic-array v0.14.9
|
|
182
|
-
Downloaded ethnum v1.5.2
|
|
183
|
-
Downloaded either v1.15.0
|
|
184
|
-
Downloaded darling v0.21.3
|
|
185
|
-
Downloaded const-oid v0.9.6
|
|
186
|
-
Downloaded block-buffer v0.10.4
|
|
187
|
-
Downloaded base64ct v1.8.0
|
|
188
|
-
Downloaded digest v0.9.0
|
|
189
|
-
Downloaded ctor v0.5.0
|
|
141
|
+
Blocking waiting for file lock on package cache
|
|
190
142
|
Compiling proc-macro2 v1.0.103
|
|
191
143
|
Compiling quote v1.0.41
|
|
192
144
|
Compiling unicode-ident v1.0.22
|
|
@@ -195,147 +147,135 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
195
147
|
Compiling serde_core v1.0.228
|
|
196
148
|
Compiling serde v1.0.228
|
|
197
149
|
Compiling serde_json v1.0.145
|
|
198
|
-
Checking cfg-if v1.0.4
|
|
199
|
-
Compiling memchr v2.7.6
|
|
200
150
|
Compiling itoa v1.0.15
|
|
201
151
|
Compiling ryu v1.0.20
|
|
152
|
+
Compiling memchr v2.7.6
|
|
153
|
+
Checking cfg-if v1.0.4
|
|
202
154
|
Checking subtle v2.6.1
|
|
203
|
-
Checking const-oid v0.9.6
|
|
204
155
|
Compiling libc v0.2.177
|
|
156
|
+
Checking const-oid v0.9.6
|
|
205
157
|
Compiling autocfg v1.5.0
|
|
206
158
|
Compiling fnv v1.0.7
|
|
207
|
-
Compiling ident_case v1.0.1
|
|
208
159
|
Compiling strsim v0.11.1
|
|
209
|
-
Compiling
|
|
160
|
+
Compiling ident_case v1.0.1
|
|
210
161
|
Compiling zerocopy v0.8.27
|
|
211
162
|
Compiling syn v1.0.109
|
|
212
163
|
Compiling semver v1.0.27
|
|
213
|
-
Checking cpufeatures v0.2.17
|
|
214
164
|
Compiling paste v1.0.15
|
|
165
|
+
Compiling schemars v0.8.22
|
|
215
166
|
Compiling dyn-clone v1.0.20
|
|
216
|
-
Compiling
|
|
217
|
-
Compiling num-traits v0.2.19
|
|
218
|
-
Compiling either v1.15.0
|
|
219
|
-
Compiling thiserror v1.0.69
|
|
167
|
+
Compiling cpufeatures v0.2.17
|
|
220
168
|
Compiling data-encoding v2.9.0
|
|
169
|
+
Compiling either v1.15.0
|
|
170
|
+
Compiling ethnum v1.5.2
|
|
171
|
+
Compiling generic-array v0.14.9
|
|
221
172
|
Compiling ahash v0.8.12
|
|
222
173
|
Compiling escape-bytes v0.1.1
|
|
223
|
-
Compiling ethnum v1.5.2
|
|
224
174
|
Compiling rustc_version v0.4.1
|
|
225
|
-
Checking hashbrown v0.16.0
|
|
226
175
|
Checking base16ct v0.2.0
|
|
227
|
-
|
|
176
|
+
Compiling num-traits v0.2.19
|
|
228
177
|
Checking once_cell v1.21.3
|
|
178
|
+
Compiling itertools v0.10.5
|
|
179
|
+
Compiling libm v0.2.15
|
|
180
|
+
Compiling thiserror v1.0.69
|
|
181
|
+
Compiling equivalent v1.0.2
|
|
182
|
+
Compiling hashbrown v0.16.0
|
|
183
|
+
Compiling curve25519-dalek v4.1.3
|
|
229
184
|
Compiling prettyplease v0.2.37
|
|
230
|
-
Checking
|
|
185
|
+
Checking ppv-lite86 v0.2.21
|
|
186
|
+
Checking downcast-rs v1.2.1
|
|
231
187
|
Compiling block-buffer v0.10.4
|
|
232
188
|
Compiling crypto-common v0.1.6
|
|
189
|
+
Checking num-integer v0.1.46
|
|
190
|
+
Checking hashbrown v0.13.2
|
|
191
|
+
Checking indexmap-nostd v0.4.0
|
|
233
192
|
Checking getrandom v0.2.16
|
|
234
|
-
|
|
193
|
+
Checking num-bigint v0.4.6
|
|
235
194
|
Compiling digest v0.10.7
|
|
236
|
-
Checking rand_core v0.6.4
|
|
237
195
|
Checking base64 v0.22.1
|
|
196
|
+
Checking spin v0.9.8
|
|
238
197
|
Checking indexmap v2.12.0
|
|
239
|
-
Checking
|
|
240
|
-
|
|
198
|
+
Checking hex v0.4.3
|
|
199
|
+
Checking rand_core v0.6.4
|
|
241
200
|
Compiling sha2 v0.10.9
|
|
242
|
-
Checking ff v0.13.1
|
|
243
|
-
Compiling curve25519-dalek v4.1.3
|
|
244
|
-
Compiling syn v2.0.108
|
|
245
|
-
Checking indexmap-nostd v0.4.0
|
|
246
|
-
Checking ppv-lite86 v0.2.21
|
|
247
|
-
Checking group v0.13.0
|
|
248
|
-
Checking wasmparser v0.116.1
|
|
249
|
-
Checking downcast-rs v1.2.1
|
|
250
201
|
Checking wasmparser-nostd v0.100.2
|
|
251
|
-
Checking
|
|
252
|
-
|
|
253
|
-
Checking hashbrown v0.13.2
|
|
202
|
+
Checking byteorder v1.5.0
|
|
203
|
+
Compiling syn v2.0.108
|
|
254
204
|
Compiling heapless v0.8.0
|
|
255
205
|
Checking rand_chacha v0.3.1
|
|
256
|
-
Checking
|
|
257
|
-
Checking
|
|
258
|
-
Checking
|
|
259
|
-
|
|
206
|
+
Checking ff v0.13.1
|
|
207
|
+
Checking wasmi_arena v0.4.1
|
|
208
|
+
Checking smallvec v1.15.1
|
|
209
|
+
Checking group v0.13.0
|
|
210
|
+
Checking wasmi_core v0.13.0
|
|
211
|
+
Checking wasmparser v0.116.1
|
|
260
212
|
Checking rand v0.8.5
|
|
261
|
-
|
|
213
|
+
Checking hash32 v0.3.1
|
|
262
214
|
Checking stable_deref_trait v1.2.1
|
|
215
|
+
Compiling static_assertions v1.1.0
|
|
216
|
+
Checking keccak v0.1.5
|
|
217
|
+
Compiling soroban-env-host v25.0.1
|
|
263
218
|
Compiling heck v0.5.0
|
|
264
219
|
Checking hex-literal v0.4.1
|
|
265
220
|
Compiling itertools v0.14.0
|
|
266
|
-
Checking hash32 v0.3.1
|
|
267
|
-
Checking wasmi_core v0.13.0
|
|
268
|
-
Compiling include_dir_macros v0.7.4
|
|
269
|
-
Checking glob v0.3.3
|
|
270
|
-
Checking opaque-debug v0.3.1
|
|
271
|
-
Compiling anyhow v1.0.100
|
|
272
|
-
Checking heck v0.4.1
|
|
273
|
-
Checking base64 v0.21.7
|
|
274
|
-
Checking include_dir v0.7.4
|
|
275
221
|
Checking ark-std v0.4.0
|
|
276
222
|
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
277
223
|
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
278
224
|
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
279
225
|
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
280
226
|
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
281
|
-
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
282
227
|
Checking oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
283
|
-
|
|
284
|
-
Compiling ark-ff-macros v0.4.2
|
|
285
|
-
Compiling ark-ff-asm v0.4.2
|
|
286
|
-
Compiling derivative v2.2.0
|
|
228
|
+
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
287
229
|
Compiling darling_core v0.21.3
|
|
288
230
|
Compiling darling_core v0.20.11
|
|
289
231
|
Compiling macro-string v0.1.4
|
|
290
232
|
Compiling serde_derive v1.0.228
|
|
291
233
|
Compiling zeroize_derive v1.4.2
|
|
292
234
|
Compiling cfg_eval v0.1.2
|
|
293
|
-
Compiling thiserror-impl v1.0.69
|
|
294
235
|
Compiling num-derive v0.4.2
|
|
236
|
+
Compiling thiserror-impl v1.0.69
|
|
295
237
|
Compiling curve25519-dalek-derive v0.1.1
|
|
296
238
|
Compiling soroban-builtin-sdk-macros v25.0.1
|
|
297
|
-
Compiling visibility v0.1.1
|
|
298
239
|
Compiling bytes-lit v0.0.5
|
|
240
|
+
Compiling visibility v0.1.1
|
|
241
|
+
Compiling ark-serialize-derive v0.4.2
|
|
242
|
+
Compiling derivative v2.2.0
|
|
243
|
+
Compiling ark-ff-asm v0.4.2
|
|
244
|
+
Compiling ark-ff-macros v0.4.2
|
|
299
245
|
Checking zeroize v1.8.2
|
|
300
246
|
Checking der v0.7.10
|
|
301
|
-
Checking crypto-bigint v0.5.5
|
|
302
|
-
Checking digest v0.9.0
|
|
303
|
-
Checking block-buffer v0.9.0
|
|
304
|
-
Checking sha2 v0.9.9
|
|
305
247
|
Checking sec1 v0.7.3
|
|
248
|
+
Checking crypto-bigint v0.5.5
|
|
306
249
|
Checking signature v2.2.0
|
|
307
250
|
Checking ark-serialize v0.4.2
|
|
308
251
|
Checking hmac v0.12.1
|
|
309
252
|
Checking sha3 v0.10.8
|
|
310
|
-
|
|
253
|
+
Compiling darling_macro v0.20.11
|
|
254
|
+
Checking ed25519 v2.2.3
|
|
311
255
|
Checking rfc6979 v0.4.0
|
|
312
256
|
Checking ark-ff v0.4.2
|
|
313
257
|
Compiling darling_macro v0.21.3
|
|
314
|
-
Checking ed25519 v2.2.
|
|
315
|
-
Checking
|
|
258
|
+
Checking ed25519-dalek v2.2.0
|
|
259
|
+
Checking elliptic-curve v0.13.8
|
|
316
260
|
Checking ecdsa v0.16.9
|
|
317
|
-
|
|
318
|
-
|
|
261
|
+
Checking primeorder v0.13.6
|
|
262
|
+
Compiling darling v0.20.11
|
|
319
263
|
Compiling crate-git-revision v0.0.6
|
|
320
|
-
Checking ed25519-dalek v2.2.0
|
|
321
|
-
Checking k256 v0.13.4
|
|
322
264
|
Checking p256 v0.13.2
|
|
265
|
+
Checking k256 v0.13.4
|
|
266
|
+
Compiling darling v0.21.3
|
|
267
|
+
Compiling serde_with_macros v3.15.1
|
|
323
268
|
Compiling stellar-strkey v0.0.13
|
|
324
269
|
Compiling stellar-xdr v25.0.0
|
|
325
270
|
Compiling soroban-env-common v25.0.1
|
|
326
271
|
Compiling stellar-strkey v0.0.16
|
|
327
272
|
Compiling soroban-sdk v25.1.1
|
|
328
|
-
Compiling darling v0.21.3
|
|
329
|
-
Compiling darling v0.20.11
|
|
330
|
-
Compiling serde_with_macros v3.15.1
|
|
331
|
-
Compiling serde_with v3.15.1
|
|
332
273
|
Checking ark-poly v0.4.2
|
|
274
|
+
Compiling serde_with v3.15.1
|
|
333
275
|
Checking ark-ec v0.4.2
|
|
334
276
|
Checking ark-bls12-381 v0.4.0
|
|
335
277
|
Checking ark-bn254 v0.4.0
|
|
336
|
-
|
|
337
|
-
Checking soroban-spec-typescript v25.1.0
|
|
338
|
-
Checking ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
278
|
+
Compiling soroban-spec v25.1.1
|
|
339
279
|
Compiling soroban-env-macros v25.0.1
|
|
340
280
|
Compiling soroban-spec-rust v25.1.1
|
|
341
281
|
Compiling soroban-sdk-macros v25.1.1
|
|
@@ -343,23 +283,23 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
343
283
|
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
344
284
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
345
285
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
346
|
-
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
347
286
|
Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
348
|
-
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
349
287
|
Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
288
|
+
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
289
|
+
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
350
290
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
351
291
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
352
292
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
353
|
-
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
354
293
|
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
355
|
-
Checking
|
|
294
|
+
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
356
295
|
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
357
|
-
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
358
296
|
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
297
|
+
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
298
|
+
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
359
299
|
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
360
300
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
361
301
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
362
|
-
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
363
302
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
364
|
-
|
|
365
|
-
|
|
303
|
+
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
304
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 29s
|
|
305
|
+
⏱️ bash -c cargo clippy -- -D warnings: 2:30.445 (m:ss.mmm)
|