@layerzerolabs/protocol-stellar-v2 0.2.34 → 0.2.36
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 +281 -276
- package/.turbo/turbo-lint.log +209 -211
- package/.turbo/turbo-test.log +1705 -1701
- package/Cargo.lock +10 -10
- package/Cargo.toml +1 -1
- package/contracts/common-macros/src/auth.rs +5 -5
- package/contracts/common-macros/src/lib.rs +69 -0
- package/contracts/common-macros/src/rbac.rs +90 -0
- package/contracts/common-macros/src/storage.rs +7 -5
- package/contracts/common-macros/src/tests/lz_contract.rs +5 -7
- package/contracts/common-macros/src/tests/mod.rs +1 -0
- package/contracts/common-macros/src/tests/rbac.rs +420 -0
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_multisig_code.snap +4 -4
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__auth__snapshot_generated_ownable_code.snap +5 -12
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__rbac__snapshot_preserve_function_signature.snap +17 -0
- package/contracts/common-macros/src/tests/storage/parse_name.rs +0 -1
- package/contracts/common-macros/src/tests/storage/snapshots/common_macros__tests__storage__generate_storage__snapshot_generated_storage_code.snap +3 -3
- package/contracts/endpoint-v2/src/endpoint_v2.rs +5 -4
- package/contracts/endpoint-v2/src/interfaces/messaging_channel.rs +7 -8
- package/contracts/endpoint-v2/src/messaging_channel.rs +78 -45
- package/contracts/endpoint-v2/src/storage.rs +8 -3
- package/contracts/endpoint-v2/src/tests/endpoint_setup.rs +2 -2
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -15
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +46 -9
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +7 -23
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +23 -20
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +94 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound_nonce.rs +17 -15
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +48 -13
- package/contracts/endpoint-v2/src/tests/messaging_channel/pending_inbound_nonces.rs +111 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +15 -25
- package/contracts/layerzero-views/src/layerzero_view.rs +2 -2
- package/contracts/layerzero-views/src/tests/layerzero_view_tests.rs +3 -4
- package/contracts/layerzero-views/src/tests/setup.rs +0 -21
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_default.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/lz_contract/wrapper_multisig_upgradeable.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/multisig/self_auth.rs +1 -1
- package/contracts/macro-integration-tests/tests/runtime/ownable/initialization.rs +8 -5
- package/contracts/macro-integration-tests/tests/runtime/ownable/ownership_transfer.rs +2 -2
- package/contracts/macro-integration-tests/tests/runtime/rbac/guard_behavior.rs +91 -0
- package/contracts/macro-integration-tests/tests/runtime/rbac/mod.rs +30 -0
- package/contracts/macro-integration-tests/tests/runtime/ttl_configurable/configuration.rs +2 -2
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +4 -4
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/missing_env.stderr +16 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_address.stderr +24 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.rs +18 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/fail/param_not_found.stderr +24 -0
- package/contracts/macro-integration-tests/tests/ui/rbac/pass/basic.rs +71 -0
- package/contracts/macro-integration-tests/tests/ui_rbac.rs +12 -0
- package/contracts/message-libs/blocked-message-lib/src/lib.rs +4 -4
- package/contracts/message-libs/uln-302/src/send_uln.rs +5 -5
- package/contracts/oapps/counter/src/counter.rs +6 -0
- package/contracts/oapps/oapp/src/oapp_sender.rs +3 -2
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +5 -0
- package/contracts/oapps/oft/src/interfaces/mintable.rs +2 -2
- package/contracts/oapps/oft/src/oft.rs +5 -4
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +2 -2
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +2 -2
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +2 -2
- package/contracts/oapps/sac-manager/Cargo.toml +0 -1
- package/contracts/oapps/sac-manager/src/interfaces/mod.rs +3 -0
- package/contracts/oapps/sac-manager/src/interfaces/sac_admin_wrapper.rs +49 -0
- package/contracts/oapps/sac-manager/src/lib.rs +3 -3
- package/contracts/oapps/sac-manager/src/sac_manager.rs +45 -73
- package/contracts/oapps/sac-manager/src/storage.rs +2 -9
- package/contracts/oapps/sac-manager/src/tests/sac_manager/clawback.rs +8 -10
- package/contracts/oapps/sac-manager/src/tests/sac_manager/mint.rs +13 -18
- package/contracts/oapps/sac-manager/src/tests/sac_manager/mod.rs +0 -1
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_admin.rs +22 -12
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_authorized.rs +19 -9
- package/contracts/oapps/sac-manager/src/tests/sac_manager/test_helper.rs +27 -10
- package/contracts/oapps/sac-manager/src/tests/sac_manager/view_functions.rs +0 -15
- package/contracts/oapps/sac-manager/src/tests/test_helper.rs +19 -28
- package/contracts/upgrader/src/lib.rs +5 -2
- package/contracts/utils/src/auth.rs +6 -2
- package/contracts/utils/src/errors.rs +18 -0
- package/contracts/utils/src/lib.rs +1 -0
- package/contracts/utils/src/multisig.rs +5 -1
- package/contracts/utils/src/ownable.rs +1 -1
- package/contracts/utils/src/rbac.rs +428 -0
- package/contracts/utils/src/tests/auth.rs +2 -2
- package/contracts/utils/src/tests/mod.rs +1 -0
- package/contracts/utils/src/tests/multisig.rs +2 -2
- package/contracts/utils/src/tests/ownable.rs +4 -5
- package/contracts/utils/src/tests/rbac.rs +559 -0
- package/contracts/utils/src/tests/ttl_configurable.rs +5 -6
- package/contracts/utils/src/tests/upgradeable.rs +4 -5
- package/contracts/workers/worker/src/worker.rs +1 -1
- package/docs/layerzero-v2-on-stellar.md +46 -2
- package/package.json +3 -3
- package/sdk/.turbo/turbo-test.log +370 -372
- package/sdk/dist/generated/bml.d.ts +53 -3
- package/sdk/dist/generated/bml.js +27 -3
- package/sdk/dist/generated/counter.d.ts +84 -5
- package/sdk/dist/generated/counter.js +31 -4
- package/sdk/dist/generated/dvn.d.ts +55 -5
- package/sdk/dist/generated/dvn.js +28 -4
- package/sdk/dist/generated/dvn_fee_lib.d.ts +55 -5
- package/sdk/dist/generated/dvn_fee_lib.js +28 -4
- package/sdk/dist/generated/endpoint.d.ts +64 -15
- package/sdk/dist/generated/endpoint.js +32 -8
- package/sdk/dist/generated/executor.d.ts +55 -5
- package/sdk/dist/generated/executor.js +28 -4
- package/sdk/dist/generated/executor_fee_lib.d.ts +55 -5
- package/sdk/dist/generated/executor_fee_lib.js +28 -4
- package/sdk/dist/generated/executor_helper.d.ts +53 -3
- package/sdk/dist/generated/executor_helper.js +27 -3
- package/sdk/dist/generated/layerzero_view.d.ts +55 -5
- package/sdk/dist/generated/layerzero_view.js +28 -4
- package/sdk/dist/generated/oft.d.ts +84 -5
- package/sdk/dist/generated/oft.js +31 -4
- package/sdk/dist/generated/price_feed.d.ts +55 -5
- package/sdk/dist/generated/price_feed.js +28 -4
- package/sdk/dist/generated/sac_manager.d.ts +213 -666
- package/sdk/dist/generated/sac_manager.js +57 -238
- package/sdk/dist/generated/sml.d.ts +55 -5
- package/sdk/dist/generated/sml.js +28 -4
- package/sdk/dist/generated/treasury.d.ts +55 -5
- package/sdk/dist/generated/treasury.js +28 -4
- package/sdk/dist/generated/uln302.d.ts +55 -5
- package/sdk/dist/generated/uln302.js +28 -4
- package/sdk/dist/generated/upgrader.d.ts +53 -3
- package/sdk/dist/generated/upgrader.js +27 -3
- package/sdk/package.json +1 -1
- package/sdk/test/oft-sml.test.ts +10 -9
- package/sdk/test/{sac-manager-redistribution.test.ts → sac-manager.test.ts} +49 -25
- package/contracts/endpoint-v2/src/tests/messaging_channel/lazy_inbound_nonce.rs +0 -39
- package/contracts/oapps/sac-manager/src/errors.rs +0 -14
- package/contracts/oapps/sac-manager/src/tests/sac_manager/set_minter.rs +0 -69
package/.turbo/turbo-lint.log
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
📦 Using 4 default cache volume(s) for stellar
|
|
6
6
|
✅ stellar-25.0.0 (Latest stable release)
|
|
7
7
|
🔧 stellar version: 25.0.0
|
|
8
|
-
(node:
|
|
8
|
+
(node:63755) [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
9
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
10
10
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
11
11
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
@@ -28,44 +28,42 @@ f6bd9104d248: Pulling fs layer
|
|
|
28
28
|
73ca50fa4809: Pulling fs layer
|
|
29
29
|
f5a85bd7a844: Pulling fs layer
|
|
30
30
|
c132a28172a5: Pulling fs layer
|
|
31
|
-
1cfd9ed002d2: Waiting
|
|
32
|
-
1d4a870e3b66: Waiting
|
|
33
31
|
43dc8d96fd20: Waiting
|
|
32
|
+
2c1ce468d9f3: Waiting
|
|
33
|
+
1d4a870e3b66: Waiting
|
|
34
34
|
1b2c4c00c303: Waiting
|
|
35
35
|
73ca50fa4809: Waiting
|
|
36
|
-
2c1ce468d9f3: Waiting
|
|
37
36
|
f5a85bd7a844: Waiting
|
|
38
37
|
c132a28172a5: Waiting
|
|
39
|
-
|
|
40
|
-
4617420e017b: Waiting
|
|
38
|
+
6ba0ba49c87d: Waiting
|
|
41
39
|
67ce8fb56745: Waiting
|
|
42
|
-
|
|
40
|
+
1cfd9ed002d2: Waiting
|
|
43
41
|
f6bd9104d248: Verifying Checksum
|
|
44
42
|
f6bd9104d248: Download complete
|
|
45
|
-
f6bd9104d248: Pull complete
|
|
46
|
-
4617420e017b: Verifying Checksum
|
|
47
|
-
4617420e017b: Download complete
|
|
48
|
-
4617420e017b: Pull complete
|
|
49
43
|
67ce8fb56745: Verifying Checksum
|
|
50
44
|
67ce8fb56745: Download complete
|
|
45
|
+
f6bd9104d248: Pull complete
|
|
51
46
|
6ba0ba49c87d: Verifying Checksum
|
|
52
47
|
6ba0ba49c87d: Download complete
|
|
53
48
|
1cfd9ed002d2: Verifying Checksum
|
|
54
49
|
1cfd9ed002d2: Download complete
|
|
50
|
+
4e430a9db1a3: Verifying Checksum
|
|
51
|
+
4e430a9db1a3: Download complete
|
|
55
52
|
2c1ce468d9f3: Verifying Checksum
|
|
56
53
|
2c1ce468d9f3: Download complete
|
|
57
|
-
|
|
54
|
+
4617420e017b: Verifying Checksum
|
|
55
|
+
4617420e017b: Download complete
|
|
58
56
|
1b2c4c00c303: Verifying Checksum
|
|
59
57
|
1b2c4c00c303: Download complete
|
|
60
|
-
4e430a9db1a3: Verifying Checksum
|
|
61
|
-
4e430a9db1a3: Download complete
|
|
62
|
-
1d4a870e3b66: Download complete
|
|
63
58
|
73ca50fa4809: Verifying Checksum
|
|
64
59
|
73ca50fa4809: Download complete
|
|
65
|
-
|
|
60
|
+
43dc8d96fd20: Verifying Checksum
|
|
61
|
+
43dc8d96fd20: Download complete
|
|
66
62
|
f5a85bd7a844: Download complete
|
|
67
|
-
c132a28172a5: Verifying Checksum
|
|
68
63
|
c132a28172a5: Download complete
|
|
64
|
+
1d4a870e3b66: Verifying Checksum
|
|
65
|
+
1d4a870e3b66: Download complete
|
|
66
|
+
4617420e017b: Pull complete
|
|
69
67
|
4e430a9db1a3: Pull complete
|
|
70
68
|
67ce8fb56745: Pull complete
|
|
71
69
|
6ba0ba49c87d: Pull complete
|
|
@@ -106,175 +104,175 @@ info: installing component 'rustc'
|
|
|
106
104
|
info: installing component 'rustfmt'
|
|
107
105
|
Updating crates.io index
|
|
108
106
|
Downloading crates ...
|
|
109
|
-
Downloaded
|
|
110
|
-
Downloaded
|
|
111
|
-
Downloaded
|
|
112
|
-
Downloaded
|
|
113
|
-
Downloaded
|
|
114
|
-
Downloaded ppv-lite86 v0.2.21
|
|
107
|
+
Downloaded ctor-proc-macro v0.0.6
|
|
108
|
+
Downloaded ark-bn254 v0.4.0
|
|
109
|
+
Downloaded ark-serialize-derive v0.4.2
|
|
110
|
+
Downloaded itoa v1.0.15
|
|
111
|
+
Downloaded p256 v0.13.2
|
|
115
112
|
Downloaded rand_chacha v0.3.1
|
|
116
|
-
Downloaded
|
|
117
|
-
Downloaded
|
|
118
|
-
Downloaded
|
|
119
|
-
Downloaded
|
|
120
|
-
Downloaded
|
|
113
|
+
Downloaded zeroize v1.8.2
|
|
114
|
+
Downloaded digest v0.9.0
|
|
115
|
+
Downloaded soroban-sdk-macros v25.1.1
|
|
116
|
+
Downloaded quote v1.0.41
|
|
117
|
+
Downloaded stellar-strkey v0.0.16
|
|
121
118
|
Downloaded wasmi_core v0.13.0
|
|
122
|
-
Downloaded
|
|
123
|
-
Downloaded
|
|
119
|
+
Downloaded keccak v0.1.5
|
|
120
|
+
Downloaded zeroize_derive v1.4.2
|
|
121
|
+
Downloaded subtle v2.6.1
|
|
124
122
|
Downloaded static_assertions v1.1.0
|
|
125
|
-
Downloaded
|
|
126
|
-
Downloaded spki v0.7.3
|
|
127
|
-
Downloaded soroban-spec-rust v25.1.0
|
|
128
|
-
Downloaded darling_core v0.21.3
|
|
129
|
-
Downloaded hashbrown v0.16.0
|
|
123
|
+
Downloaded unicode-ident v1.0.22
|
|
130
124
|
Downloaded wasmparser-nostd v0.100.2
|
|
131
|
-
Downloaded
|
|
132
|
-
Downloaded typenum v1.19.0
|
|
125
|
+
Downloaded zerocopy v0.8.27
|
|
133
126
|
Downloaded wasmparser v0.116.1
|
|
134
|
-
Downloaded k256 v0.13.4
|
|
135
|
-
Downloaded chrono v0.4.42
|
|
136
|
-
Downloaded darling_core v0.20.11
|
|
137
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
138
127
|
Downloaded syn v2.0.108
|
|
139
128
|
Downloaded soroban-env-host v25.0.1
|
|
140
|
-
Downloaded
|
|
141
|
-
Downloaded
|
|
142
|
-
Downloaded
|
|
143
|
-
Downloaded
|
|
144
|
-
Downloaded
|
|
145
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
146
|
-
Downloaded wasmi_arena v0.4.1
|
|
147
|
-
Downloaded subtle v2.6.1
|
|
148
|
-
Downloaded memchr v2.7.6
|
|
129
|
+
Downloaded version_check v0.9.5
|
|
130
|
+
Downloaded visibility v0.1.1
|
|
131
|
+
Downloaded sha2 v0.10.9
|
|
132
|
+
Downloaded soroban-spec v25.1.1
|
|
133
|
+
Downloaded smallvec v1.15.1
|
|
149
134
|
Downloaded libm v0.2.15
|
|
135
|
+
Downloaded serde_core v1.0.228
|
|
136
|
+
Downloaded autocfg v1.5.0
|
|
137
|
+
Downloaded memchr v2.7.6
|
|
138
|
+
Downloaded indexmap v2.12.0
|
|
139
|
+
Downloaded typenum v1.19.0
|
|
150
140
|
Downloaded heapless v0.8.0
|
|
151
|
-
Downloaded
|
|
152
|
-
Downloaded darling v0.20.11
|
|
153
|
-
Downloaded serde_with v3.15.1
|
|
154
|
-
Downloaded itertools v0.14.0
|
|
155
|
-
Downloaded indexmap v1.9.3
|
|
156
|
-
Downloaded group v0.13.0
|
|
157
|
-
Downloaded escape-bytes v0.1.1
|
|
158
|
-
Downloaded elliptic-curve v0.13.8
|
|
141
|
+
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
159
142
|
Downloaded schemars v0.8.22
|
|
143
|
+
Downloaded libc v0.2.177
|
|
144
|
+
Downloaded time v0.3.44
|
|
145
|
+
Downloaded hash32 v0.3.1
|
|
146
|
+
Downloaded crypto-common v0.1.6
|
|
147
|
+
Downloaded ark-std v0.4.0
|
|
148
|
+
Downloaded pkcs8 v0.10.2
|
|
149
|
+
Downloaded soroban-env-common v25.0.1
|
|
150
|
+
Downloaded signature v2.2.0
|
|
151
|
+
Downloaded sha2 v0.9.9
|
|
152
|
+
Downloaded serde_derive v1.0.228
|
|
160
153
|
Downloaded ryu v1.0.20
|
|
161
|
-
Downloaded ref-cast v1.0.25
|
|
154
|
+
Downloaded ref-cast-impl v1.0.25
|
|
155
|
+
Downloaded primeorder v0.13.6
|
|
156
|
+
Downloaded indexmap-nostd v0.4.0
|
|
157
|
+
Downloaded spki v0.7.3
|
|
158
|
+
Downloaded sha3 v0.10.8
|
|
159
|
+
Downloaded chrono v0.4.42
|
|
160
|
+
Downloaded k256 v0.13.4
|
|
161
|
+
Downloaded itertools v0.14.0
|
|
162
|
+
Downloaded syn v1.0.109
|
|
163
|
+
Downloaded serde_with v3.15.1
|
|
164
|
+
Downloaded macro-string v0.1.4
|
|
165
|
+
Downloaded iana-time-zone v0.1.64
|
|
166
|
+
Downloaded heck v0.5.0
|
|
167
|
+
Downloaded ff v0.13.1
|
|
168
|
+
Downloaded block-buffer v0.9.0
|
|
169
|
+
Downloaded base64ct v1.8.0
|
|
170
|
+
Downloaded ark-serialize v0.4.2
|
|
171
|
+
Downloaded soroban-sdk v25.1.1
|
|
172
|
+
Downloaded serde v1.0.228
|
|
162
173
|
Downloaded paste v1.0.15
|
|
163
|
-
Downloaded p256 v0.13.2
|
|
164
174
|
Downloaded once_cell v1.21.3
|
|
165
|
-
Downloaded num-traits v0.2.19
|
|
166
175
|
Downloaded num-integer v0.1.46
|
|
167
|
-
Downloaded
|
|
176
|
+
Downloaded hex-literal v0.4.1
|
|
177
|
+
Downloaded crate-git-revision v0.0.6
|
|
178
|
+
Downloaded block-buffer v0.10.4
|
|
179
|
+
Downloaded base64 v0.22.1
|
|
180
|
+
Downloaded base16ct v0.2.0
|
|
181
|
+
Downloaded stellar-strkey v0.0.13
|
|
182
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
183
|
+
Downloaded serde_with_macros v3.15.1
|
|
184
|
+
Downloaded sec1 v0.7.3
|
|
185
|
+
Downloaded schemars v1.0.5
|
|
186
|
+
Downloaded schemars v0.9.0
|
|
187
|
+
Downloaded opaque-debug v0.3.1
|
|
188
|
+
Downloaded num-derive v0.4.2
|
|
189
|
+
Downloaded num-conv v0.1.0
|
|
190
|
+
Downloaded include_dir v0.7.4
|
|
168
191
|
Downloaded hex v0.4.3
|
|
192
|
+
Downloaded heck v0.4.1
|
|
169
193
|
Downloaded hashbrown v0.13.2
|
|
170
|
-
Downloaded
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded
|
|
173
|
-
Downloaded
|
|
174
|
-
Downloaded
|
|
175
|
-
Downloaded
|
|
194
|
+
Downloaded group v0.13.0
|
|
195
|
+
Downloaded getrandom v0.2.16
|
|
196
|
+
Downloaded ethnum v1.5.2
|
|
197
|
+
Downloaded const-oid v0.9.6
|
|
198
|
+
Downloaded bytes-lit v0.0.5
|
|
199
|
+
Downloaded time-macros v0.2.24
|
|
200
|
+
Downloaded thiserror v1.0.69
|
|
176
201
|
Downloaded spin v0.9.8
|
|
177
|
-
Downloaded soroban-
|
|
178
|
-
Downloaded
|
|
179
|
-
Downloaded
|
|
180
|
-
Downloaded
|
|
202
|
+
Downloaded soroban-env-macros v25.0.1
|
|
203
|
+
Downloaded semver v1.0.27
|
|
204
|
+
Downloaded num-bigint v0.4.6
|
|
205
|
+
Downloaded itertools v0.10.5
|
|
181
206
|
Downloaded glob v0.3.3
|
|
182
|
-
Downloaded
|
|
183
|
-
Downloaded
|
|
184
|
-
Downloaded
|
|
185
|
-
Downloaded
|
|
186
|
-
Downloaded
|
|
187
|
-
Downloaded darling_macro v0.21.3
|
|
188
|
-
Downloaded serde v1.0.228
|
|
189
|
-
Downloaded darling_macro v0.20.11
|
|
190
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
191
|
-
Downloaded crypto-common v0.1.6
|
|
192
|
-
Downloaded crate-git-revision v0.0.6
|
|
207
|
+
Downloaded fnv v1.0.7
|
|
208
|
+
Downloaded soroban-spec-rust v25.1.1
|
|
209
|
+
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
210
|
+
Downloaded ident_case v1.0.1
|
|
211
|
+
Downloaded escape-bytes v0.1.1
|
|
193
212
|
Downloaded cpufeatures v0.2.17
|
|
194
|
-
Downloaded
|
|
195
|
-
Downloaded
|
|
196
|
-
Downloaded
|
|
197
|
-
Downloaded
|
|
198
|
-
Downloaded
|
|
213
|
+
Downloaded stable_deref_trait v1.2.1
|
|
214
|
+
Downloaded rustc_version v0.4.1
|
|
215
|
+
Downloaded hashbrown v0.12.3
|
|
216
|
+
Downloaded base64 v0.21.7
|
|
217
|
+
Downloaded wasmi_arena v0.4.1
|
|
199
218
|
Downloaded time-core v0.1.6
|
|
200
219
|
Downloaded strsim v0.11.1
|
|
201
|
-
Downloaded
|
|
202
|
-
Downloaded
|
|
203
|
-
Downloaded soroban-spec v25.1.0
|
|
204
|
-
Downloaded soroban-ledger-snapshot v25.1.0
|
|
205
|
-
Downloaded soroban-env-common v25.0.1
|
|
206
|
-
Downloaded signature v2.2.0
|
|
207
|
-
Downloaded serde_derive v1.0.228
|
|
208
|
-
Downloaded serde_core v1.0.228
|
|
209
|
-
Downloaded ref-cast-impl v1.0.25
|
|
210
|
-
Downloaded num-derive v0.4.2
|
|
211
|
-
Downloaded keccak v0.1.5
|
|
212
|
-
Downloaded itoa v1.0.15
|
|
213
|
-
Downloaded indexmap-nostd v0.4.0
|
|
214
|
-
Downloaded include_dir_macros v0.7.4
|
|
215
|
-
Downloaded ident_case v1.0.1
|
|
216
|
-
Downloaded hex-literal v0.4.1
|
|
217
|
-
Downloaded heck v0.5.0
|
|
218
|
-
Downloaded hash32 v0.3.1
|
|
219
|
-
Downloaded fnv v1.0.7
|
|
220
|
+
Downloaded hmac v0.12.1
|
|
221
|
+
Downloaded generic-array v0.14.9
|
|
220
222
|
Downloaded equivalent v1.0.2
|
|
221
|
-
Downloaded
|
|
222
|
-
Downloaded
|
|
223
|
-
Downloaded
|
|
224
|
-
Downloaded
|
|
223
|
+
Downloaded downcast-rs v1.2.1
|
|
224
|
+
Downloaded include_dir_macros v0.7.4
|
|
225
|
+
Downloaded cfg_eval v0.1.2
|
|
226
|
+
Downloaded ark-poly v0.4.2
|
|
225
227
|
Downloaded thiserror-impl v1.0.69
|
|
226
|
-
Downloaded soroban-
|
|
227
|
-
Downloaded serde_json v1.0.145
|
|
228
|
-
Downloaded schemars v1.0.5
|
|
229
|
-
Downloaded macro-string v0.1.4
|
|
230
|
-
Downloaded ctor v0.5.0
|
|
231
|
-
Downloaded const-oid v0.9.6
|
|
232
|
-
Downloaded block-buffer v0.9.0
|
|
233
|
-
Downloaded base64 v0.22.1
|
|
234
|
-
Downloaded base64 v0.21.7
|
|
235
|
-
Downloaded ark-std v0.4.0
|
|
236
|
-
Downloaded syn v1.0.109
|
|
237
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
238
|
-
Downloaded soroban-sdk v25.1.0
|
|
239
|
-
Downloaded sha2 v0.9.9
|
|
228
|
+
Downloaded soroban-ledger-snapshot v25.1.1
|
|
240
229
|
Downloaded rfc6979 v0.4.0
|
|
230
|
+
Downloaded ref-cast v1.0.25
|
|
241
231
|
Downloaded rand_core v0.6.4
|
|
232
|
+
Downloaded rand v0.8.5
|
|
242
233
|
Downloaded proc-macro2 v1.0.103
|
|
243
234
|
Downloaded prettyplease v0.2.37
|
|
244
|
-
Downloaded
|
|
235
|
+
Downloaded hashbrown v0.16.0
|
|
236
|
+
Downloaded ed25519-dalek v2.2.0
|
|
237
|
+
Downloaded digest v0.10.7
|
|
238
|
+
Downloaded data-encoding v2.9.0
|
|
239
|
+
Downloaded darling_macro v0.20.11
|
|
240
|
+
Downloaded curve25519-dalek v4.1.3
|
|
241
|
+
Downloaded crypto-bigint v0.5.5
|
|
242
|
+
Downloaded serde_json v1.0.145
|
|
243
|
+
Downloaded powerfmt v0.2.0
|
|
244
|
+
Downloaded num-traits v0.2.19
|
|
245
245
|
Downloaded derive_arbitrary v1.3.2
|
|
246
|
-
Downloaded
|
|
246
|
+
Downloaded der v0.7.10
|
|
247
|
+
Downloaded darling v0.20.11
|
|
248
|
+
Downloaded ppv-lite86 v0.2.21
|
|
249
|
+
Downloaded stellar-xdr v25.0.0
|
|
250
|
+
Downloaded either v1.15.0
|
|
251
|
+
Downloaded dtor-proc-macro v0.0.6
|
|
247
252
|
Downloaded deranged v0.5.5
|
|
253
|
+
Downloaded darling_core v0.21.3
|
|
254
|
+
Downloaded curve25519-dalek-derive v0.1.1
|
|
255
|
+
Downloaded ctor v0.5.0
|
|
248
256
|
Downloaded cfg-if v1.0.4
|
|
249
|
-
Downloaded byteorder v1.5.0
|
|
250
|
-
Downloaded stable_deref_trait v1.2.1
|
|
251
|
-
Downloaded semver v1.0.27
|
|
252
|
-
Downloaded rustc_version v0.4.1
|
|
253
|
-
Downloaded rand v0.8.5
|
|
254
|
-
Downloaded quote v1.0.41
|
|
255
|
-
Downloaded primeorder v0.13.6
|
|
256
|
-
Downloaded pkcs8 v0.10.2
|
|
257
|
-
Downloaded heck v0.4.1
|
|
258
257
|
Downloaded ecdsa v0.16.9
|
|
259
|
-
Downloaded
|
|
260
|
-
Downloaded
|
|
261
|
-
Downloaded
|
|
262
|
-
Downloaded
|
|
263
|
-
Downloaded
|
|
264
|
-
Downloaded
|
|
265
|
-
Downloaded
|
|
266
|
-
Downloaded
|
|
267
|
-
Downloaded base16ct v0.2.0
|
|
258
|
+
Downloaded dtor v0.1.1
|
|
259
|
+
Downloaded darling_macro v0.21.3
|
|
260
|
+
Downloaded derivative v2.2.0
|
|
261
|
+
Downloaded darling_core v0.20.11
|
|
262
|
+
Downloaded dyn-clone v1.0.20
|
|
263
|
+
Downloaded darling v0.21.3
|
|
264
|
+
Downloaded byteorder v1.5.0
|
|
265
|
+
Downloaded ark-ff-asm v0.4.2
|
|
268
266
|
Downloaded ark-ff v0.4.2
|
|
269
267
|
Downloaded ark-ec v0.4.2
|
|
268
|
+
Downloaded ark-bls12-381 v0.4.0
|
|
269
|
+
Downloaded indexmap v1.9.3
|
|
270
|
+
Downloaded ed25519 v2.2.3
|
|
271
|
+
Downloaded elliptic-curve v0.13.8
|
|
272
|
+
Downloaded anyhow v1.0.100
|
|
270
273
|
Downloaded arbitrary v1.3.2
|
|
271
|
-
Downloaded getrandom v0.2.16
|
|
272
274
|
Downloaded ark-ff-macros v0.4.2
|
|
273
|
-
Downloaded
|
|
274
|
-
Downloaded dyn-clone v1.0.20
|
|
275
|
-
Downloaded digest v0.10.7
|
|
276
|
-
Downloaded bytes-lit v0.0.5
|
|
277
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
275
|
+
Downloaded ahash v0.8.12
|
|
278
276
|
Compiling proc-macro2 v1.0.103
|
|
279
277
|
Compiling quote v1.0.41
|
|
280
278
|
Compiling unicode-ident v1.0.22
|
|
@@ -285,89 +283,93 @@ info: installing component 'rustfmt'
|
|
|
285
283
|
Compiling serde_json v1.0.145
|
|
286
284
|
Compiling memchr v2.7.6
|
|
287
285
|
Compiling itoa v1.0.15
|
|
288
|
-
Checking cfg-if v1.0.4
|
|
289
286
|
Compiling ryu v1.0.20
|
|
287
|
+
Checking cfg-if v1.0.4
|
|
290
288
|
Checking subtle v2.6.1
|
|
291
289
|
Checking const-oid v0.9.6
|
|
292
|
-
Compiling libc v0.2.177
|
|
293
290
|
Compiling autocfg v1.5.0
|
|
291
|
+
Compiling libc v0.2.177
|
|
294
292
|
Compiling ident_case v1.0.1
|
|
295
|
-
Compiling fnv v1.0.7
|
|
296
293
|
Compiling strsim v0.11.1
|
|
294
|
+
Compiling fnv v1.0.7
|
|
297
295
|
Compiling schemars v0.8.22
|
|
298
296
|
Compiling zerocopy v0.8.27
|
|
299
297
|
Compiling syn v1.0.109
|
|
300
|
-
Compiling semver v1.0.27
|
|
301
298
|
Checking cpufeatures v0.2.17
|
|
299
|
+
Compiling semver v1.0.27
|
|
302
300
|
Compiling paste v1.0.15
|
|
303
301
|
Compiling dyn-clone v1.0.20
|
|
304
|
-
Compiling
|
|
305
|
-
|
|
302
|
+
Compiling data-encoding v2.9.0
|
|
303
|
+
Checking either v1.15.0
|
|
306
304
|
Compiling generic-array v0.14.9
|
|
307
305
|
Compiling thiserror v1.0.69
|
|
308
|
-
Compiling
|
|
306
|
+
Compiling num-traits v0.2.19
|
|
309
307
|
Checking itertools v0.10.5
|
|
310
308
|
Compiling ahash v0.8.12
|
|
311
309
|
Compiling ethnum v1.5.2
|
|
312
310
|
Compiling escape-bytes v0.1.1
|
|
313
311
|
Compiling rustc_version v0.4.1
|
|
314
|
-
Checking num-integer v0.1.46
|
|
315
|
-
Checking getrandom v0.2.16
|
|
316
|
-
Checking equivalent v1.0.2
|
|
317
312
|
Compiling prettyplease v0.2.37
|
|
313
|
+
Checking equivalent v1.0.2
|
|
318
314
|
Checking once_cell v1.21.3
|
|
319
|
-
Checking base16ct v0.2.0
|
|
320
315
|
Checking hashbrown v0.16.0
|
|
316
|
+
Checking base16ct v0.2.0
|
|
317
|
+
Checking getrandom v0.2.16
|
|
318
|
+
Checking num-integer v0.1.46
|
|
319
|
+
Compiling libm v0.2.15
|
|
321
320
|
Checking rand_core v0.6.4
|
|
322
321
|
Checking num-bigint v0.4.6
|
|
323
|
-
Checking base64 v0.22.1
|
|
324
|
-
Checking ppv-lite86 v0.2.21
|
|
325
322
|
Checking ff v0.13.1
|
|
326
|
-
|
|
327
|
-
Compiling crypto-common v0.1.6
|
|
328
|
-
Checking group v0.13.0
|
|
329
|
-
Compiling libm v0.2.15
|
|
330
|
-
Checking rand_chacha v0.3.1
|
|
331
|
-
Compiling digest v0.10.7
|
|
323
|
+
Checking base64 v0.22.1
|
|
332
324
|
Checking indexmap v2.12.0
|
|
325
|
+
Checking group v0.13.0
|
|
333
326
|
Compiling curve25519-dalek v4.1.3
|
|
334
|
-
|
|
335
|
-
|
|
327
|
+
Compiling crypto-common v0.1.6
|
|
328
|
+
Compiling block-buffer v0.10.4
|
|
336
329
|
Checking downcast-rs v1.2.1
|
|
337
|
-
Checking
|
|
338
|
-
Checking byteorder v1.5.0
|
|
339
|
-
Checking wasmparser-nostd v0.100.2
|
|
340
|
-
Checking smallvec v1.15.1
|
|
330
|
+
Checking indexmap-nostd v0.4.0
|
|
341
331
|
Compiling syn v2.0.108
|
|
342
|
-
Compiling
|
|
332
|
+
Compiling digest v0.10.7
|
|
333
|
+
Checking ppv-lite86 v0.2.21
|
|
343
334
|
Checking wasmparser v0.116.1
|
|
344
|
-
|
|
345
|
-
Checking
|
|
335
|
+
Checking smallvec v1.15.1
|
|
336
|
+
Checking wasmparser-nostd v0.100.2
|
|
337
|
+
Compiling sha2 v0.10.9
|
|
338
|
+
Checking hashbrown v0.13.2
|
|
339
|
+
Checking rand_chacha v0.3.1
|
|
346
340
|
Checking wasmi_arena v0.4.1
|
|
347
|
-
Checking
|
|
348
|
-
Checking
|
|
341
|
+
Checking spin v0.9.8
|
|
342
|
+
Checking wasmi_core v0.13.0
|
|
343
|
+
Checking byteorder v1.5.0
|
|
344
|
+
Compiling heapless v0.8.0
|
|
349
345
|
Compiling static_assertions v1.1.0
|
|
350
|
-
Compiling heck v0.5.0
|
|
351
346
|
Compiling soroban-env-host v25.0.1
|
|
347
|
+
Checking rand v0.8.5
|
|
352
348
|
Checking keccak v0.1.5
|
|
349
|
+
Checking hash32 v0.3.1
|
|
350
|
+
Compiling heck v0.5.0
|
|
353
351
|
Checking stable_deref_trait v1.2.1
|
|
354
352
|
Checking hex-literal v0.4.1
|
|
355
353
|
Compiling itertools v0.14.0
|
|
356
|
-
Checking wasmi_core v0.13.0
|
|
357
354
|
Compiling include_dir_macros v0.7.4
|
|
355
|
+
Checking glob v0.3.3
|
|
358
356
|
Compiling anyhow v1.0.100
|
|
359
357
|
Checking opaque-debug v0.3.1
|
|
360
|
-
Checking
|
|
358
|
+
Checking ark-std v0.4.0
|
|
361
359
|
Checking base64 v0.21.7
|
|
362
360
|
Checking heck v0.4.1
|
|
363
361
|
Checking include_dir v0.7.4
|
|
364
|
-
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
365
|
-
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
366
362
|
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
363
|
+
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
367
364
|
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
365
|
+
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
368
366
|
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
369
367
|
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
370
368
|
Checking oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
369
|
+
Compiling ark-serialize-derive v0.4.2
|
|
370
|
+
Compiling ark-ff-macros v0.4.2
|
|
371
|
+
Compiling ark-ff-asm v0.4.2
|
|
372
|
+
Compiling derivative v2.2.0
|
|
371
373
|
Compiling darling_core v0.21.3
|
|
372
374
|
Compiling darling_core v0.20.11
|
|
373
375
|
Compiling macro-string v0.1.4
|
|
@@ -386,71 +388,67 @@ info: installing component 'rustfmt'
|
|
|
386
388
|
Checking digest v0.9.0
|
|
387
389
|
Checking block-buffer v0.9.0
|
|
388
390
|
Checking sec1 v0.7.3
|
|
389
|
-
Compiling ark-serialize-derive v0.4.2
|
|
390
|
-
Compiling ark-ff-macros v0.4.2
|
|
391
|
-
Compiling derivative v2.2.0
|
|
392
|
-
Compiling ark-ff-asm v0.4.2
|
|
393
391
|
Checking sha2 v0.9.9
|
|
394
392
|
Checking signature v2.2.0
|
|
393
|
+
Checking ark-serialize v0.4.2
|
|
395
394
|
Checking hmac v0.12.1
|
|
396
395
|
Checking sha3 v0.10.8
|
|
397
|
-
|
|
398
|
-
Checking rfc6979 v0.4.0
|
|
396
|
+
Compiling darling_macro v0.20.11
|
|
399
397
|
Checking ed25519 v2.2.3
|
|
398
|
+
Checking rfc6979 v0.4.0
|
|
399
|
+
Checking ark-ff v0.4.2
|
|
400
400
|
Compiling darling_macro v0.21.3
|
|
401
401
|
Checking elliptic-curve v0.13.8
|
|
402
|
-
Checking ecdsa v0.16.9
|
|
403
|
-
Checking primeorder v0.13.6
|
|
404
|
-
Compiling darling_macro v0.20.11
|
|
405
|
-
Checking k256 v0.13.4
|
|
406
|
-
Checking p256 v0.13.2
|
|
407
402
|
Checking hex v0.4.3
|
|
408
403
|
Checking ed25519-dalek v2.2.0
|
|
409
404
|
Compiling crate-git-revision v0.0.6
|
|
410
|
-
|
|
411
|
-
|
|
405
|
+
Checking ecdsa v0.16.9
|
|
406
|
+
Checking primeorder v0.13.6
|
|
407
|
+
Compiling darling v0.20.11
|
|
408
|
+
Checking p256 v0.13.2
|
|
409
|
+
Checking k256 v0.13.4
|
|
412
410
|
Compiling stellar-strkey v0.0.13
|
|
413
411
|
Compiling stellar-xdr v25.0.0
|
|
414
412
|
Compiling soroban-env-common v25.0.1
|
|
415
413
|
Compiling stellar-strkey v0.0.16
|
|
416
|
-
Compiling soroban-sdk v25.1.
|
|
417
|
-
Compiling darling v0.
|
|
418
|
-
|
|
414
|
+
Compiling soroban-sdk v25.1.1
|
|
415
|
+
Compiling darling v0.21.3
|
|
416
|
+
Compiling serde_with_macros v3.15.1
|
|
419
417
|
Compiling serde_with v3.15.1
|
|
420
418
|
Checking ark-poly v0.4.2
|
|
421
419
|
Checking ark-ec v0.4.2
|
|
422
420
|
Checking ark-bn254 v0.4.0
|
|
423
421
|
Checking ark-bls12-381 v0.4.0
|
|
424
|
-
Checking soroban-spec v25.1.
|
|
422
|
+
Checking soroban-spec v25.1.1
|
|
425
423
|
Checking soroban-spec-typescript v25.1.0
|
|
426
424
|
Checking ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
427
425
|
Compiling soroban-env-macros v25.0.1
|
|
428
|
-
Compiling soroban-spec-rust v25.1.
|
|
429
|
-
Compiling soroban-sdk-macros v25.1.
|
|
426
|
+
Compiling soroban-spec-rust v25.1.1
|
|
427
|
+
Compiling soroban-sdk-macros v25.1.1
|
|
430
428
|
Checking utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
431
429
|
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
432
430
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
433
431
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
432
|
+
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
434
433
|
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
435
434
|
Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
436
|
-
Checking
|
|
435
|
+
Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
437
436
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
438
437
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
439
438
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
440
439
|
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
441
440
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
442
|
-
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
443
441
|
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
442
|
+
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
444
443
|
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
445
444
|
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
446
445
|
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
447
446
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
448
447
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
449
|
-
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
450
448
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
451
|
-
Checking
|
|
452
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
453
|
-
⏱️ bash -c cargo clippy -- -D warnings: 2:
|
|
449
|
+
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
450
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 43s
|
|
451
|
+
⏱️ bash -c cargo clippy -- -D warnings: 2:03.097 (m:ss.mmm)
|
|
454
452
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
455
453
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
456
454
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|