@layerzerolabs/protocol-stellar-v2 0.2.18 → 0.2.20
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 +303 -253
- package/.turbo/turbo-lint.log +66 -65
- package/.turbo/turbo-test.log +1312 -1282
- package/Cargo.lock +21 -8
- package/Cargo.toml +2 -0
- package/contracts/ERROR_SPEC.md +9 -2
- package/contracts/common-macros/src/contract_ttl.rs +18 -7
- package/contracts/common-macros/src/lib.rs +4 -4
- package/contracts/common-macros/src/tests/contract_ttl.rs +1 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__contract_ttl__snapshot_generated_contractimpl_code.snap +2 -1
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__upgradeable__snapshot_generated_upgradeable_code.snap +7 -12
- package/contracts/common-macros/src/upgradeable.rs +15 -21
- package/contracts/message-libs/uln-302/src/events.rs +4 -0
- package/contracts/message-libs/uln-302/src/send_uln.rs +23 -7
- package/contracts/message-libs/uln-302/src/tests/send_uln302/send.rs +38 -64
- package/contracts/oapps/counter/Cargo.toml +1 -0
- package/contracts/oapps/counter/integration_tests/setup_uln.rs +1 -1
- package/contracts/oapps/oapp/src/oapp_receiver.rs +1 -1
- package/contracts/oapps/oapp/src/tests/test_oapp_core.rs +113 -65
- package/contracts/oapps/oapp/src/tests/test_oapp_options_type3.rs +111 -82
- package/contracts/oapps/oapp/src/tests/test_oapp_receiver.rs +293 -65
- package/contracts/oapps/oapp/src/tests/test_oapp_sender.rs +331 -56
- package/contracts/oapps/oft/Cargo.toml +10 -7
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_oft_fee.rs +3 -4
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_pausable.rs +2 -3
- package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/test_rate_limiter.rs +1 -1
- package/contracts/oapps/oft/integration-tests/mod.rs +1 -1
- package/contracts/oapps/oft/integration-tests/setup.rs +28 -127
- package/contracts/oapps/oft/integration-tests/utils.rs +254 -21
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -8
- package/contracts/oapps/oft/src/extensions/pausable.rs +19 -4
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +52 -28
- package/contracts/oapps/oft/src/lib.rs +10 -14
- package/contracts/oapps/oft/src/oft.rs +143 -193
- package/contracts/oapps/oft/src/oft_types/lock_unlock.rs +9 -11
- package/contracts/oapps/oft/src/oft_types/mint_burn.rs +12 -14
- package/contracts/oapps/oft/src/oft_types/mod.rs +13 -0
- package/contracts/oapps/{oft-std → oft-core}/Cargo.toml +6 -4
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/mod.rs +1 -1
- package/contracts/oapps/{oft-std → oft-core}/integration-tests/setup.rs +126 -29
- package/contracts/oapps/{oft → oft-core}/integration-tests/test_with_sml.rs +3 -3
- package/contracts/oapps/oft-core/integration-tests/utils.rs +201 -0
- package/contracts/oapps/oft-core/src/lib.rs +18 -0
- package/contracts/oapps/oft-core/src/oft_core.rs +479 -0
- package/contracts/oapps/{oft → oft-core}/src/tests/mod.rs +0 -2
- package/contracts/oapps/{oft → oft-core}/src/tests/test_lz_receive.rs +7 -7
- package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_msg_codec.rs +4 -4
- package/contracts/oapps/{oft → oft-core}/src/tests/test_resolve_address.rs +3 -3
- package/contracts/oapps/{oft → oft-core}/src/tests/test_utils.rs +46 -27
- package/contracts/oapps/{oft → oft-core}/src/utils.rs +1 -1
- package/contracts/upgrader/src/lib.rs +30 -57
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract1.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract2.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +44 -35
- package/contracts/utils/src/buffer_reader.rs +1 -0
- package/contracts/utils/src/errors.rs +8 -2
- package/contracts/utils/src/ownable.rs +125 -3
- package/contracts/utils/src/tests/option_ext.rs +1 -1
- package/contracts/utils/src/tests/ownable.rs +445 -7
- package/contracts/utils/src/tests/ttl_configurable.rs +2 -2
- package/contracts/utils/src/tests/upgradeable.rs +372 -175
- package/contracts/utils/src/ttl_configurable.rs +3 -3
- package/contracts/utils/src/upgradeable.rs +48 -23
- package/contracts/workers/dvn/Cargo.toml +1 -0
- package/contracts/workers/dvn/src/auth.rs +12 -42
- package/contracts/workers/dvn/src/dvn.rs +16 -31
- package/contracts/workers/dvn/src/errors.rs +0 -1
- package/contracts/workers/dvn/src/interfaces/dvn.rs +35 -0
- package/contracts/workers/dvn/src/lib.rs +4 -3
- package/contracts/workers/dvn/src/tests/auth.rs +1 -1
- package/contracts/workers/dvn/src/tests/dvn.rs +19 -15
- package/contracts/workers/dvn/src/tests/multisig/set_threshold.rs +2 -4
- package/contracts/workers/dvn/src/tests/multisig/verify_signatures.rs +1 -3
- package/contracts/workers/dvn/src/tests/setup.rs +5 -9
- package/contracts/workers/dvn-fee-lib/Cargo.toml +1 -1
- package/contracts/workers/dvn-fee-lib/src/dvn_fee_lib.rs +3 -5
- package/contracts/workers/dvn-fee-lib/src/tests/dvn_fee_lib.rs +2 -3
- package/contracts/workers/executor/Cargo.toml +1 -0
- package/contracts/workers/executor/src/executor.rs +15 -26
- package/contracts/workers/executor-fee-lib/Cargo.toml +2 -1
- package/contracts/workers/executor-fee-lib/src/executor_fee_lib.rs +63 -5
- package/contracts/workers/executor-fee-lib/src/executor_option.rs +28 -1
- package/contracts/workers/executor-fee-lib/src/lib.rs +3 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_fee_lib.rs +701 -0
- package/contracts/workers/executor-fee-lib/src/tests/executor_option.rs +370 -0
- package/contracts/workers/executor-fee-lib/src/tests/mod.rs +4 -0
- package/contracts/workers/executor-fee-lib/src/tests/setup.rs +60 -0
- package/contracts/workers/executor-helper/src/lib.rs +3 -0
- package/contracts/workers/executor-helper/src/tests/executor_helper.rs +184 -0
- package/contracts/workers/executor-helper/src/tests/mod.rs +2 -0
- package/contracts/workers/executor-helper/src/tests/setup.rs +366 -0
- package/contracts/workers/fee-lib-interfaces/Cargo.toml +14 -0
- package/contracts/workers/{worker/src/interfaces/mod.rs → fee-lib-interfaces/src/lib.rs} +4 -3
- package/contracts/workers/price-feed/Cargo.toml +2 -1
- package/contracts/workers/price-feed/src/events.rs +1 -1
- package/contracts/workers/price-feed/src/lib.rs +3 -0
- package/contracts/workers/price-feed/src/price_feed.rs +6 -12
- package/contracts/workers/price-feed/src/storage.rs +1 -1
- package/contracts/workers/price-feed/src/tests/mod.rs +2 -0
- package/contracts/workers/price-feed/src/tests/price_feed.rs +869 -0
- package/contracts/workers/price-feed/src/tests/setup.rs +70 -0
- package/contracts/workers/price-feed/src/types.rs +1 -1
- package/contracts/workers/worker/src/errors.rs +0 -3
- package/contracts/workers/worker/src/lib.rs +0 -2
- package/contracts/workers/worker/src/storage.rs +32 -29
- package/contracts/workers/worker/src/tests/setup.rs +1 -7
- package/contracts/workers/worker/src/tests/worker.rs +50 -42
- package/contracts/workers/worker/src/worker.rs +49 -58
- package/package.json +4 -5
- package/sdk/.turbo/turbo-test.log +229 -217
- package/sdk/dist/generated/bml.d.ts +39 -1
- package/sdk/dist/generated/bml.js +33 -8
- package/sdk/dist/generated/counter.d.ts +131 -3
- package/sdk/dist/generated/counter.js +41 -10
- package/sdk/dist/generated/dvn.d.ts +431 -362
- package/sdk/dist/generated/dvn.js +80 -55
- package/sdk/dist/generated/dvn_fee_lib.d.ts +327 -251
- package/sdk/dist/generated/dvn_fee_lib.js +55 -57
- package/sdk/dist/generated/endpoint.d.ts +131 -3
- package/sdk/dist/generated/endpoint.js +41 -10
- package/sdk/dist/generated/executor.d.ts +503 -339
- package/sdk/dist/generated/executor.js +80 -48
- package/sdk/dist/generated/executor_fee_lib.d.ts +395 -319
- package/sdk/dist/generated/executor_fee_lib.js +54 -56
- package/sdk/dist/generated/executor_helper.d.ts +53 -187
- package/sdk/dist/generated/executor_helper.js +47 -29
- package/sdk/dist/generated/layerzero_view.d.ts +1271 -0
- package/sdk/dist/generated/layerzero_view.js +294 -0
- package/sdk/dist/generated/oft.d.ts +1851 -0
- package/sdk/dist/generated/oft.js +347 -0
- package/sdk/dist/generated/price_feed.d.ts +329 -253
- package/sdk/dist/generated/price_feed.js +55 -57
- package/sdk/dist/generated/sml.d.ts +131 -3
- package/sdk/dist/generated/sml.js +41 -10
- package/sdk/dist/generated/treasury.d.ts +131 -3
- package/sdk/dist/generated/treasury.js +41 -10
- package/sdk/dist/generated/uln302.d.ts +131 -3
- package/sdk/dist/generated/uln302.js +43 -12
- package/sdk/dist/generated/upgrader.d.ts +201 -15
- package/sdk/dist/generated/upgrader.js +99 -1
- package/sdk/dist/index.d.ts +2 -2
- package/sdk/dist/index.js +3 -3
- package/sdk/package.json +3 -2
- package/sdk/src/index.ts +3 -3
- package/sdk/test/oft-sml.test.ts +20 -20
- package/sdk/test/upgrader.test.ts +2 -3
- package/sdk/turbo.json +8 -0
- package/tools/ts-bindings-gen/Cargo.toml +2 -0
- package/tools/ts-bindings-gen/src/main.rs +53 -5
- package/turbo.json +0 -2
- package/contracts/oapps/oft/src/interfaces/mint_burn_token.rs +0 -23
- package/contracts/oapps/oft/src/interfaces/mod.rs +0 -3
- package/contracts/oapps/oft/src/oft_impl.rs +0 -201
- package/contracts/oapps/oft/src/tests/extensions/mod.rs +0 -11
- package/contracts/oapps/oft/src/tests/extensions/setup.rs +0 -917
- package/contracts/oapps/oft/src/tests/extensions/test_oft_fee.rs +0 -751
- package/contracts/oapps/oft/src/tests/extensions/test_pausable.rs +0 -434
- package/contracts/oapps/oft/src/tests/extensions/test_rate_limiter.rs +0 -1080
- package/contracts/oapps/oft-std/integration-tests/utils.rs +0 -427
- package/contracts/oapps/oft-std/src/lib.rs +0 -16
- package/contracts/oapps/oft-std/src/oft.rs +0 -174
- package/sdk/dist/generated/oft_std.d.ts +0 -1722
- package/sdk/dist/generated/oft_std.js +0 -316
- package/sdk/dist/wasm/blocked-message-lib.d.ts +0 -1
- package/sdk/dist/wasm/blocked-message-lib.js +0 -2
- package/sdk/dist/wasm/counter.d.ts +0 -1
- package/sdk/dist/wasm/counter.js +0 -2
- package/sdk/dist/wasm/dvn-fee-lib.d.ts +0 -1
- package/sdk/dist/wasm/dvn-fee-lib.js +0 -2
- package/sdk/dist/wasm/dvn.d.ts +0 -1
- package/sdk/dist/wasm/dvn.js +0 -2
- package/sdk/dist/wasm/endpoint-v2.d.ts +0 -1
- package/sdk/dist/wasm/endpoint-v2.js +0 -2
- package/sdk/dist/wasm/executor-fee-lib.d.ts +0 -1
- package/sdk/dist/wasm/executor-fee-lib.js +0 -2
- package/sdk/dist/wasm/executor-helper.d.ts +0 -1
- package/sdk/dist/wasm/executor-helper.js +0 -2
- package/sdk/dist/wasm/executor.d.ts +0 -1
- package/sdk/dist/wasm/executor.js +0 -2
- package/sdk/dist/wasm/layerzero-views.d.ts +0 -1
- package/sdk/dist/wasm/layerzero-views.js +0 -2
- package/sdk/dist/wasm/oft-std.d.ts +0 -1
- package/sdk/dist/wasm/oft-std.js +0 -2
- package/sdk/dist/wasm/price-feed.d.ts +0 -1
- package/sdk/dist/wasm/price-feed.js +0 -2
- package/sdk/dist/wasm/simple-message-lib.d.ts +0 -1
- package/sdk/dist/wasm/simple-message-lib.js +0 -2
- package/sdk/dist/wasm/treasury.d.ts +0 -1
- package/sdk/dist/wasm/treasury.js +0 -2
- package/sdk/dist/wasm/uln302.d.ts +0 -1
- package/sdk/dist/wasm/uln302.js +0 -2
- package/sdk/dist/wasm/upgrader.d.ts +0 -1
- package/sdk/dist/wasm/upgrader.js +0 -2
- package/sdk/dist/wasm.d.ts +0 -15
- package/sdk/dist/wasm.js +0 -15
- /package/contracts/oapps/{oft-std → oft}/integration-tests/extensions/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/mod.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/codec/oft_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/errors.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/events.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/storage.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_decimals.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_compose_msg_codec.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_oft_version.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_oft.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_quote_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_send.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/tests/test_token.rs +0 -0
- /package/contracts/oapps/{oft → oft-core}/src/types.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/dvn_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/executor_fee_lib.rs +0 -0
- /package/contracts/workers/{worker/src/interfaces → fee-lib-interfaces/src}/price_feed.rs +0 -0
package/.turbo/turbo-lint.log
CHANGED
|
@@ -25,30 +25,32 @@ f83e34e44849: Pulling fs layer
|
|
|
25
25
|
2965c99ac5df: Pulling fs layer
|
|
26
26
|
66f4137c2c7c: Pulling fs layer
|
|
27
27
|
66f4137c2c7c: Waiting
|
|
28
|
-
2ff845d4f468: Waiting
|
|
29
28
|
8a4f031cd7ce: Waiting
|
|
29
|
+
a7d3f750d5ec: Waiting
|
|
30
|
+
2ff845d4f468: Waiting
|
|
30
31
|
2c1ce468d9f3: Waiting
|
|
31
32
|
1b86cc28e881: Waiting
|
|
33
|
+
2965c99ac5df: Waiting
|
|
32
34
|
f83e34e44849: Waiting
|
|
33
35
|
8bc2eeec2bb3: Waiting
|
|
34
|
-
2965c99ac5df: Waiting
|
|
35
|
-
a7d3f750d5ec: Waiting
|
|
36
36
|
889cdda75b95: Waiting
|
|
37
|
+
f6bd9104d248: Verifying Checksum
|
|
37
38
|
f6bd9104d248: Download complete
|
|
38
39
|
f6bd9104d248: Pull complete
|
|
39
40
|
889cdda75b95: Verifying Checksum
|
|
40
41
|
889cdda75b95: Download complete
|
|
41
42
|
a7d3f750d5ec: Verifying Checksum
|
|
42
43
|
a7d3f750d5ec: Download complete
|
|
44
|
+
8a4f031cd7ce: Verifying Checksum
|
|
45
|
+
8a4f031cd7ce: Download complete
|
|
43
46
|
e9886d99af76: Verifying Checksum
|
|
44
47
|
e9886d99af76: Download complete
|
|
45
|
-
4617420e017b: Download complete
|
|
46
|
-
2c1ce468d9f3: Verifying Checksum
|
|
47
48
|
2c1ce468d9f3: Download complete
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
f83e34e44849: Verifying Checksum
|
|
49
|
+
4617420e017b: Verifying Checksum
|
|
50
|
+
4617420e017b: Download complete
|
|
51
51
|
f83e34e44849: Download complete
|
|
52
|
+
2ff845d4f468: Verifying Checksum
|
|
53
|
+
2ff845d4f468: Download complete
|
|
52
54
|
1b86cc28e881: Verifying Checksum
|
|
53
55
|
1b86cc28e881: Download complete
|
|
54
56
|
8bc2eeec2bb3: Verifying Checksum
|
|
@@ -60,8 +62,6 @@ f83e34e44849: Download complete
|
|
|
60
62
|
4617420e017b: Pull complete
|
|
61
63
|
e9886d99af76: Pull complete
|
|
62
64
|
889cdda75b95: Pull complete
|
|
63
|
-
2ff845d4f468: Verifying Checksum
|
|
64
|
-
2ff845d4f468: Download complete
|
|
65
65
|
a7d3f750d5ec: Pull complete
|
|
66
66
|
8a4f031cd7ce: Pull complete
|
|
67
67
|
2ff845d4f468: Pull complete
|
|
@@ -72,7 +72,7 @@ f83e34e44849: Pull complete
|
|
|
72
72
|
2965c99ac5df: Pull complete
|
|
73
73
|
66f4137c2c7c: Pull complete
|
|
74
74
|
Digest: sha256:635ca108241d5962b99bfce73582af12fbeea76e530b326fdcfc7224fa2ca257
|
|
75
|
-
Status:
|
|
75
|
+
Status: Image is up to date for 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
76
76
|
438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
77
77
|
✅ Successfully pulled: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_23.1.4_patch_6
|
|
78
78
|
👤 Running container as UID:GID 1001:1001
|
|
@@ -88,105 +88,105 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
88
88
|
Compiling libc v0.2.177
|
|
89
89
|
Checking typenum v1.19.0
|
|
90
90
|
Checking cpufeatures v0.2.17
|
|
91
|
-
Checking num-traits v0.2.19
|
|
92
91
|
Checking serde_core v1.0.228
|
|
93
92
|
Checking zerocopy v0.8.27
|
|
93
|
+
Checking num-traits v0.2.19
|
|
94
94
|
Checking zeroize v1.8.2
|
|
95
|
-
Checking ryu v1.0.20
|
|
96
95
|
Checking memchr v2.7.6
|
|
96
|
+
Checking ryu v1.0.20
|
|
97
97
|
Checking itoa v1.0.15
|
|
98
98
|
Checking dyn-clone v1.0.20
|
|
99
99
|
Checking either v1.15.0
|
|
100
100
|
Compiling stellar-xdr v23.0.0
|
|
101
|
-
Checking equivalent v1.0.2
|
|
102
|
-
Checking data-encoding v2.9.0
|
|
103
101
|
Checking base16ct v0.2.0
|
|
102
|
+
Checking data-encoding v2.9.0
|
|
103
|
+
Checking equivalent v1.0.2
|
|
104
104
|
Checking hashbrown v0.16.0
|
|
105
|
-
Checking
|
|
105
|
+
Checking semver v1.0.27
|
|
106
106
|
Checking base64 v0.22.1
|
|
107
107
|
Checking ethnum v1.5.2
|
|
108
|
-
Checking der v0.7.10
|
|
109
108
|
Checking escape-bytes v0.1.1
|
|
110
|
-
Checking
|
|
111
|
-
Checking
|
|
109
|
+
Checking stellar-strkey v0.0.13
|
|
110
|
+
Checking once_cell v1.21.3
|
|
111
|
+
Checking num-integer v0.1.46
|
|
112
112
|
Checking libm v0.2.15
|
|
113
|
+
Checking der v0.7.10
|
|
113
114
|
Checking downcast-rs v1.2.1
|
|
114
115
|
Checking indexmap-nostd v0.4.0
|
|
115
116
|
Compiling soroban-env-common v23.0.1
|
|
117
|
+
Checking generic-array v0.14.9
|
|
118
|
+
Checking itertools v0.10.5
|
|
119
|
+
Checking indexmap v2.12.0
|
|
116
120
|
Checking smallvec v1.15.1
|
|
117
|
-
Checking stellar-strkey v0.0.13
|
|
118
121
|
Checking wasmi_arena v0.4.1
|
|
119
|
-
Checking wasmparser-nostd v0.100.2
|
|
120
122
|
Checking spin v0.9.8
|
|
123
|
+
Checking wasmparser-nostd v0.100.2
|
|
124
|
+
Checking num-bigint v0.4.6
|
|
121
125
|
Checking static_assertions v1.1.0
|
|
122
|
-
Compiling soroban-env-host v23.0.1
|
|
123
126
|
Checking keccak v0.1.5
|
|
127
|
+
Compiling soroban-env-host v23.0.1
|
|
124
128
|
Compiling soroban-sdk v23.4.0
|
|
129
|
+
Checking ppv-lite86 v0.2.21
|
|
130
|
+
Checking wasmparser v0.116.1
|
|
131
|
+
Checking ahash v0.8.12
|
|
132
|
+
Checking wasmi_core v0.13.0
|
|
125
133
|
Checking hex-literal v0.4.1
|
|
126
|
-
Checking generic-array v0.14.9
|
|
127
|
-
Checking indexmap v2.12.0
|
|
128
134
|
Compiling soroban-sdk-macros v23.4.0
|
|
129
|
-
Checking num-integer v0.1.46
|
|
130
135
|
Compiling common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
136
|
+
Checking hashbrown v0.13.2
|
|
131
137
|
Checking unicode-ident v1.0.22
|
|
132
138
|
Compiling oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
133
139
|
Checking thiserror v1.0.69
|
|
140
|
+
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
134
141
|
Checking glob v0.3.3
|
|
135
|
-
Checking proc-macro2 v1.0.103
|
|
136
142
|
Checking opaque-debug v0.3.1
|
|
137
|
-
Checking
|
|
143
|
+
Checking heck v0.4.1
|
|
138
144
|
Checking base64 v0.21.7
|
|
145
|
+
Checking proc-macro2 v1.0.103
|
|
146
|
+
Checking heck v0.5.0
|
|
147
|
+
Checking anyhow v1.0.100
|
|
139
148
|
Checking include_dir v0.7.4
|
|
140
|
-
Checking block-buffer v0.10.4
|
|
141
149
|
Checking crypto-common v0.1.6
|
|
150
|
+
Checking block-buffer v0.10.4
|
|
151
|
+
Checking getrandom v0.2.16
|
|
142
152
|
Checking sec1 v0.7.3
|
|
143
|
-
Checking wasmparser v0.116.1
|
|
144
|
-
Checking digest v0.9.0
|
|
145
|
-
Checking wasmi_core v0.13.0
|
|
146
153
|
Checking block-buffer v0.9.0
|
|
147
|
-
Checking
|
|
148
|
-
Checking digest v0.10.7
|
|
149
|
-
Checking heck v0.4.1
|
|
150
|
-
Checking sha2 v0.9.9
|
|
151
|
-
Checking heck v0.5.0
|
|
152
|
-
Checking anyhow v1.0.100
|
|
153
|
-
Checking syn v2.0.108
|
|
154
|
-
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
154
|
+
Checking digest v0.9.0
|
|
155
155
|
Checking itertools v0.14.0
|
|
156
|
-
Checking ppv-lite86 v0.2.21
|
|
157
|
-
Checking ahash v0.8.12
|
|
158
156
|
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
159
|
-
Checking sha2 v0.10.9
|
|
160
|
-
Checking getrandom v0.2.16
|
|
161
|
-
Checking hmac v0.12.1
|
|
162
|
-
Checking curve25519-dalek v4.1.3
|
|
163
|
-
Checking sha3 v0.10.8
|
|
164
157
|
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
165
|
-
Checking hashbrown v0.13.2
|
|
166
|
-
Checking rfc6979 v0.4.0
|
|
167
158
|
Checking rand_core v0.6.4
|
|
168
|
-
Checking
|
|
169
|
-
Checking
|
|
159
|
+
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
160
|
+
Checking digest v0.10.7
|
|
161
|
+
Checking sha2 v0.9.9
|
|
170
162
|
Checking rand_chacha v0.3.1
|
|
171
163
|
Checking ff v0.13.1
|
|
172
164
|
Checking crypto-bigint v0.5.5
|
|
173
|
-
Checking
|
|
165
|
+
Checking quote v1.0.41
|
|
174
166
|
Checking group v0.13.0
|
|
175
|
-
Checking ed25519 v2.2.3
|
|
176
167
|
Checking rand v0.8.5
|
|
177
|
-
Checking
|
|
178
|
-
Checking
|
|
168
|
+
Checking sha2 v0.10.9
|
|
169
|
+
Checking signature v2.2.0
|
|
170
|
+
Checking hmac v0.12.1
|
|
171
|
+
Checking curve25519-dalek v4.1.3
|
|
172
|
+
Checking sha3 v0.10.8
|
|
173
|
+
Checking syn v2.0.108
|
|
179
174
|
Checking ark-std v0.4.0
|
|
180
|
-
Checking
|
|
175
|
+
Checking rfc6979 v0.4.0
|
|
176
|
+
Checking ed25519 v2.2.3
|
|
181
177
|
Checking ark-serialize v0.4.2
|
|
182
|
-
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
183
178
|
Checking ark-ff v0.4.2
|
|
179
|
+
Checking serde v1.0.228
|
|
180
|
+
Checking serde_json v1.0.145
|
|
181
|
+
Checking ed25519-dalek v2.2.0
|
|
184
182
|
Checking elliptic-curve v0.13.8
|
|
185
|
-
Checking
|
|
183
|
+
Checking hex v0.4.3
|
|
184
|
+
Checking schemars v0.8.22
|
|
186
185
|
Checking ecdsa v0.16.9
|
|
187
186
|
Checking primeorder v0.13.6
|
|
188
|
-
Checking k256 v0.13.4
|
|
189
187
|
Checking p256 v0.13.2
|
|
188
|
+
Checking k256 v0.13.4
|
|
189
|
+
Checking serde_with v3.15.1
|
|
190
190
|
Checking prettyplease v0.2.37
|
|
191
191
|
Checking ark-poly v0.4.2
|
|
192
192
|
Checking ark-ec v0.4.2
|
|
@@ -195,6 +195,7 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
195
195
|
Checking soroban-spec-typescript v23.1.4
|
|
196
196
|
Checking ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
197
197
|
Checking utils v0.0.1 (/workspace/contracts/protocol/stellar/contracts/utils)
|
|
198
|
+
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
198
199
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
199
200
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
200
201
|
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
@@ -202,21 +203,21 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
202
203
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
203
204
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
204
205
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
205
|
-
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
206
206
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
207
|
+
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
207
208
|
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
209
|
+
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
208
210
|
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
209
211
|
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
210
|
-
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
211
212
|
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
212
|
-
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
213
|
-
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
213
|
+
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
214
214
|
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
215
|
+
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
215
216
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
216
217
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
217
|
-
Checking oft
|
|
218
|
-
Finished `dev` profile [unoptimized + debuginfo] target(s) in
|
|
219
|
-
⏱️ bash -c cargo clippy -- -D warnings:
|
|
218
|
+
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
219
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 29.92s
|
|
220
|
+
⏱️ bash -c cargo clippy -- -D warnings: 30.355s
|
|
220
221
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-cargo
|
|
221
222
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-config
|
|
222
223
|
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|