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