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