@layerzerolabs/protocol-stellar-v2 0.2.33 → 0.2.34

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