@layerzerolabs/protocol-stellar-v2 0.2.39 → 0.2.41
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 +226 -313
- package/.turbo/turbo-lint.log +98 -227
- package/.turbo/turbo-test.log +1803 -1954
- package/contracts/common-macros/src/lib.rs +38 -15
- package/contracts/common-macros/src/lz_contract.rs +12 -21
- package/contracts/common-macros/src/tests/lz_contract.rs +17 -8
- package/contracts/common-macros/src/tests/snapshots/common_macros__tests__lz_contract__snapshot_generated_lz_contract_code.snap +20 -0
- package/contracts/common-macros/src/upgradeable.rs +37 -30
- package/contracts/endpoint-v2/src/endpoint_v2.rs +4 -3
- package/contracts/endpoint-v2/src/errors.rs +2 -2
- package/contracts/endpoint-v2/src/messaging_channel.rs +11 -0
- package/contracts/endpoint-v2/src/messaging_composer.rs +1 -0
- package/contracts/endpoint-v2/src/tests/endpoint_v2/clear.rs +12 -25
- package/contracts/endpoint-v2/src/tests/endpoint_v2/initializable.rs +4 -4
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verifiable.rs +50 -10
- package/contracts/endpoint-v2/src/tests/endpoint_v2/verify.rs +6 -35
- package/contracts/endpoint-v2/src/tests/messaging_channel/burn.rs +2 -2
- package/contracts/endpoint-v2/src/tests/messaging_channel/clear_payload.rs +50 -1
- package/contracts/endpoint-v2/src/tests/messaging_channel/inbound.rs +78 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/insert_and_drain_pending_nonces.rs +272 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/mod.rs +1 -0
- package/contracts/endpoint-v2/src/tests/messaging_channel/nilify.rs +10 -5
- package/contracts/endpoint-v2/src/tests/messaging_channel/skip.rs +30 -0
- package/contracts/macro-integration-tests/tests/runtime/oapp/mod.rs +22 -1
- package/contracts/macro-integration-tests/tests/runtime/oapp/oapp_core.rs +13 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/options_type3.rs +13 -10
- package/contracts/macro-integration-tests/tests/runtime/oapp/receiver.rs +15 -11
- package/contracts/macro-integration-tests/tests/runtime/oapp/sender.rs +3 -2
- package/contracts/macro-integration-tests/tests/runtime/ownable/two_step_transfer.rs +14 -12
- package/contracts/macro-integration-tests/tests/runtime/upgradeable/migrate_guard_and_state.rs +3 -9
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_invalid_inner_option.stderr +24 -1
- package/contracts/macro-integration-tests/tests/ui/lz_contract/fail/upgradeable_missing_internal.stderr +3 -3
- package/contracts/macro-integration-tests/tests/ui/lz_contract/pass/upgradeable_rbac.rs +44 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_all.rs +3 -0
- package/contracts/macro-integration-tests/tests/ui/oapp/pass/custom_single_trait.rs +3 -0
- package/contracts/macro-integration-tests/tests/ui/ownable/pass/basic.rs +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/attr_args.stderr +1 -1
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_auth_trait.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/fail/missing_upgradeable_internal.stderr +2 -2
- package/contracts/macro-integration-tests/tests/ui/upgradeable/pass/rbac.rs +44 -0
- package/contracts/oapps/counter/integration_tests/utils.rs +5 -3
- package/contracts/oapps/counter/src/tests/mod.rs +16 -1
- package/contracts/oapps/counter/src/tests/test_counter.rs +5 -2
- package/contracts/oapps/oapp/src/oapp_core.rs +21 -7
- package/contracts/oapps/oapp/src/oapp_options_type3.rs +7 -5
- package/contracts/oapps/oapp/src/tests/mod.rs +21 -0
- package/contracts/oapps/oapp/src/tests/oapp_core.rs +12 -10
- package/contracts/oapps/oapp/src/tests/oapp_options_type3.rs +11 -7
- package/contracts/oapps/oapp/src/tests/oapp_receiver.rs +4 -2
- package/contracts/oapps/oapp/src/tests/oapp_sender.rs +3 -2
- package/contracts/oapps/oapp/src/tests/test_macros.rs +15 -0
- package/contracts/oapps/oapp-macros/src/generators.rs +6 -0
- package/contracts/oapps/oapp-macros/src/tests/snapshots/oapp_macros__tests__oapp__snapshot_generate_oapp.snap +15 -0
- package/contracts/oapps/oft/integration-tests/setup.rs +22 -4
- package/contracts/oapps/oft/integration-tests/utils.rs +94 -13
- package/contracts/oapps/oft/src/extensions/oft_fee.rs +23 -10
- package/contracts/oapps/oft/src/extensions/pausable.rs +31 -10
- package/contracts/oapps/oft/src/extensions/rate_limiter.rs +9 -4
- package/contracts/oapps/oft/src/oft.rs +1 -2
- package/contracts/oapps/oft/src/tests/extensions/oft_fee.rs +39 -27
- package/contracts/oapps/oft/src/tests/extensions/pausable.rs +38 -24
- package/contracts/oapps/oft/src/tests/extensions/rate_limiter.rs +87 -69
- package/contracts/oapps/oft-core/integration-tests/setup.rs +27 -3
- package/contracts/oapps/oft-core/src/oft_core.rs +10 -5
- package/contracts/oapps/oft-core/src/tests/test_msg_inspector.rs +20 -20
- package/contracts/oapps/oft-core/src/tests/test_utils.rs +31 -3
- package/contracts/upgrader/src/lib.rs +67 -30
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract3.wasm +0 -0
- package/contracts/upgrader/src/tests/test_data/test_upgradeable_contract4.wasm +0 -0
- package/contracts/upgrader/src/tests/test_upgrader.rs +50 -4
- package/contracts/utils/src/ownable.rs +16 -5
- package/contracts/utils/src/tests/ownable.rs +39 -39
- package/contracts/utils/src/upgradeable.rs +60 -17
- package/docs/oapp-guide.md +4 -4
- package/package.json +3 -4
- package/sdk/.turbo/turbo-test.log +381 -366
- package/sdk/dist/generated/bml.d.ts +4 -4
- package/sdk/dist/generated/bml.js +6 -6
- package/sdk/dist/generated/counter.d.ts +158 -12
- package/sdk/dist/generated/counter.js +32 -12
- package/sdk/dist/generated/dvn.d.ts +4 -6
- package/sdk/dist/generated/dvn.js +8 -8
- package/sdk/dist/generated/dvn_fee_lib.d.ts +8 -10
- package/sdk/dist/generated/dvn_fee_lib.js +8 -8
- package/sdk/dist/generated/endpoint.d.ts +9 -9
- package/sdk/dist/generated/endpoint.js +9 -9
- package/sdk/dist/generated/executor.d.ts +9 -11
- package/sdk/dist/generated/executor.js +11 -11
- package/sdk/dist/generated/executor_fee_lib.d.ts +9 -11
- package/sdk/dist/generated/executor_fee_lib.js +11 -11
- package/sdk/dist/generated/executor_helper.d.ts +4 -4
- package/sdk/dist/generated/executor_helper.js +6 -6
- package/sdk/dist/generated/layerzero_view.d.ts +9 -11
- package/sdk/dist/generated/layerzero_view.js +11 -11
- package/sdk/dist/generated/oft.d.ts +194 -27
- package/sdk/dist/generated/oft.js +44 -22
- package/sdk/dist/generated/price_feed.d.ts +8 -10
- package/sdk/dist/generated/price_feed.js +8 -8
- package/sdk/dist/generated/sac_manager.d.ts +8 -8
- package/sdk/dist/generated/sac_manager.js +6 -6
- package/sdk/dist/generated/sml.d.ts +9 -9
- package/sdk/dist/generated/sml.js +9 -9
- package/sdk/dist/generated/treasury.d.ts +9 -9
- package/sdk/dist/generated/treasury.js +9 -9
- package/sdk/dist/generated/uln302.d.ts +9 -9
- package/sdk/dist/generated/uln302.js +9 -9
- package/sdk/dist/generated/upgrader.d.ts +25 -16
- package/sdk/dist/generated/upgrader.js +5 -5
- package/sdk/package.json +1 -1
- package/sdk/test/counter-sml.test.ts +20 -0
- package/sdk/test/counter-uln.test.ts +20 -0
- package/sdk/test/oft-sml.test.ts +22 -0
- package/sdk/test/upgrader.test.ts +1 -0
- package/turbo.json +1 -8
package/.turbo/turbo-lint.log
CHANGED
|
@@ -2,191 +2,62 @@
|
|
|
2
2
|
> @layerzerolabs/protocol-stellar-v2@0.0.1 lint /home/runner/work/monorepo-internal/monorepo-internal/contracts/protocol/stellar
|
|
3
3
|
> pnpm exec lz-tool --script "cargo clippy -- -D warnings" stellar
|
|
4
4
|
|
|
5
|
+
🔧 Syncing Rust toolchain: rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
5
6
|
📦 Using 4 default cache volume(s) for stellar
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
🔧 User volumes override 1 default volume(s)
|
|
8
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
9
|
+
🔧 stellar version: 25.1.0
|
|
10
|
+
(node:62664) [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
11
|
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
|
|
10
12
|
To eliminate this warning, add "type": "module" to /home/runner/work/monorepo-internal/monorepo-internal/package.json.
|
|
11
13
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
12
|
-
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
13
|
-
sha256:
|
|
14
|
-
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
14
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
15
|
+
sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
|
|
16
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
17
|
+
👤 Running container as UID:GID 1001:1001
|
|
18
|
+
🌍 Using 5 default environment variable(s) for stellar
|
|
19
|
+
📜 Executing custom script: mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy
|
|
20
|
+
🔒 Acquired lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
21
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-rustup:/cache/rustup -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy'
|
|
22
|
+
info: syncing channel updates for '1.90.0-x86_64-unknown-linux-gnu'
|
|
23
|
+
info: latest update on 2025-09-18, rust version 1.90.0 (1159e78c4 2025-09-14)
|
|
24
|
+
info: component 'clippy' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
25
|
+
info: component 'rust-std' for target 'wasm32v1-none' is up to date
|
|
26
|
+
info: component 'rustfmt' for target 'x86_64-unknown-linux-gnu' is up to date
|
|
27
|
+
|
|
28
|
+
1.90.0-x86_64-unknown-linux-gnu unchanged - rustc 1.90.0 (1159e78c4 2025-09-14)
|
|
29
|
+
|
|
30
|
+
info: checking for self-update
|
|
31
|
+
⏱️ bash -c mkdir -p $CARGO_HOME/bin && ln -sf /usr/local/cargo/bin/rustup $CARGO_HOME/bin/rustup && rustup toolchain install 1.90.0 --target wasm32v1-none --component rustfmt --component clippy: 869.378ms
|
|
32
|
+
🔓 Released lock for @layerzerolabs/protocol-stellar-v2 at /home/runner/.cache/vm-tooling/locks/stellar-rustup
|
|
33
|
+
📦 Using 4 default cache volume(s) for stellar
|
|
34
|
+
✅ stellar-25.1.0 (Latest stable release)
|
|
35
|
+
🔧 stellar version: 25.1.0
|
|
36
|
+
$ docker image inspect --format {{.Id}} 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
37
|
+
sha256:4d166776a6d1059504deff32a84797694e40f4d6858aaec2965c5815bcc10991
|
|
38
|
+
✅ Using cached Docker image: 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0
|
|
15
39
|
👤 Running container as UID:GID 1001:1001
|
|
16
40
|
🌍 Using 5 default environment variable(s) for stellar
|
|
17
41
|
📜 Executing custom script: cargo clippy -- -D warnings
|
|
18
|
-
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.
|
|
42
|
+
$ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang -e CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang -e $'CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e $'CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS=-C link-arg=-fuse-ld=mold' -e LOCAL_UID=1001 -e LOCAL_GID=1001 -v /home/runner/work/monorepo-internal/monorepo-internal:/workspace -w /workspace/contracts/protocol/stellar -v lz-tooling-cache-stellar-config:/cache/stellar -v lz-tooling-cache-stellar-cargo:/cache/cargo -v lz-tooling-cache-stellar-rustup:/cache/rustup -v /home/runner/.sccache:/cache/sccache 438003944538.dkr.ecr.us-east-1.amazonaws.com/layerzerolabs/stellar-tooling:stellar_25.1.0 bash -c $'cargo clippy -- -D warnings'
|
|
43
|
+
Blocking waiting for file lock on package cache
|
|
19
44
|
Updating crates.io index
|
|
45
|
+
Blocking waiting for file lock on package cache
|
|
20
46
|
Downloading crates ...
|
|
21
|
-
Downloaded
|
|
22
|
-
Downloaded ark-serialize-derive v0.4.2
|
|
23
|
-
Downloaded hex v0.4.3
|
|
24
|
-
Downloaded pkcs8 v0.10.2
|
|
25
|
-
Downloaded soroban-spec v25.1.1
|
|
26
|
-
Downloaded schemars v1.0.5
|
|
27
|
-
Downloaded zeroize_derive v1.4.2
|
|
28
|
-
Downloaded soroban-spec-rust v25.1.1
|
|
29
|
-
Downloaded autocfg v1.5.0
|
|
30
|
-
Downloaded soroban-ledger-snapshot v25.1.1
|
|
31
|
-
Downloaded subtle v2.6.1
|
|
32
|
-
Downloaded thiserror-impl v1.0.69
|
|
33
|
-
Downloaded wasmi_arena v0.4.1
|
|
34
|
-
Downloaded zeroize v1.8.2
|
|
35
|
-
Downloaded quote v1.0.41
|
|
36
|
-
Downloaded spin v0.9.8
|
|
37
|
-
Downloaded smallvec v1.15.1
|
|
38
|
-
Downloaded typenum v1.19.0
|
|
39
|
-
Downloaded soroban-spec-typescript v25.1.0
|
|
40
|
-
Downloaded time v0.3.44
|
|
41
|
-
Downloaded wasmparser-nostd v0.100.2
|
|
42
|
-
Downloaded serde_json v1.0.145
|
|
43
|
-
Downloaded ff v0.13.1
|
|
44
|
-
Downloaded wasmparser v0.116.1
|
|
45
|
-
Downloaded macro-string v0.1.4
|
|
46
|
-
Downloaded zerocopy v0.8.27
|
|
47
|
-
Downloaded syn v1.0.109
|
|
48
|
-
Downloaded indexmap v1.9.3
|
|
49
|
-
Downloaded glob v0.3.3
|
|
50
|
-
Downloaded syn v2.0.108
|
|
51
|
-
Downloaded memchr v2.7.6
|
|
52
|
-
Downloaded k256 v0.13.4
|
|
53
|
-
Downloaded iana-time-zone v0.1.64
|
|
54
|
-
Downloaded dyn-clone v1.0.20
|
|
55
|
-
Downloaded crypto-bigint v0.5.5
|
|
56
|
-
Downloaded ark-serialize v0.4.2
|
|
57
|
-
Downloaded downcast-rs v1.2.1
|
|
58
|
-
Downloaded deranged v0.5.5
|
|
59
|
-
Downloaded darling_core v0.20.11
|
|
60
|
-
Downloaded once_cell v1.21.3
|
|
61
|
-
Downloaded darling_core v0.21.3
|
|
62
|
-
Downloaded libc v0.2.177
|
|
63
|
-
Downloaded cfg_eval v0.1.2
|
|
64
|
-
Downloaded soroban-env-host v25.0.1
|
|
65
|
-
Downloaded base64 v0.21.7
|
|
66
|
-
Downloaded num-bigint v0.4.6
|
|
67
|
-
Downloaded itoa v1.0.15
|
|
68
|
-
Downloaded ident_case v1.0.1
|
|
69
|
-
Downloaded hex-literal v0.4.1
|
|
70
|
-
Downloaded heck v0.4.1
|
|
71
|
-
Downloaded heapless v0.8.0
|
|
72
|
-
Downloaded hashbrown v0.12.3
|
|
73
|
-
Downloaded equivalent v1.0.2
|
|
74
|
-
Downloaded ed25519-dalek v2.2.0
|
|
75
|
-
Downloaded ed25519 v2.2.3
|
|
76
|
-
Downloaded darling v0.20.11
|
|
77
|
-
Downloaded curve25519-dalek-derive v0.1.1
|
|
78
|
-
Downloaded sha3 v0.10.8
|
|
79
|
-
Downloaded cfg-if v1.0.4
|
|
80
|
-
Downloaded byteorder v1.5.0
|
|
81
|
-
Downloaded base16ct v0.2.0
|
|
82
|
-
Downloaded serde_with v3.15.1
|
|
83
|
-
Downloaded num-derive v0.4.2
|
|
84
|
-
Downloaded num-conv v0.1.0
|
|
85
|
-
Downloaded itertools v0.10.5
|
|
86
|
-
Downloaded indexmap v2.12.0
|
|
87
|
-
Downloaded hash32 v0.3.1
|
|
88
|
-
Downloaded group v0.13.0
|
|
89
|
-
Downloaded dtor v0.1.1
|
|
90
|
-
Downloaded derive_arbitrary v1.3.2
|
|
91
|
-
Downloaded darling_macro v0.21.3
|
|
92
|
-
Downloaded ctor-proc-macro v0.0.6
|
|
93
|
-
Downloaded crypto-common v0.1.6
|
|
94
|
-
Downloaded crate-git-revision v0.0.6
|
|
95
|
-
Downloaded base64 v0.22.1
|
|
96
|
-
Downloaded ark-std v0.4.0
|
|
97
|
-
Downloaded ark-ff-macros v0.4.2
|
|
98
|
-
Downloaded ark-ff-asm v0.4.2
|
|
99
|
-
Downloaded ark-bls12-381 v0.4.0
|
|
100
|
-
Downloaded arbitrary v1.3.2
|
|
101
|
-
Downloaded rand v0.8.5
|
|
102
|
-
Downloaded num-traits v0.2.19
|
|
103
|
-
Downloaded keccak v0.1.5
|
|
104
|
-
Downloaded itertools v0.14.0
|
|
105
|
-
Downloaded include_dir_macros v0.7.4
|
|
47
|
+
Downloaded opaque-debug v0.3.1
|
|
106
48
|
Downloaded include_dir v0.7.4
|
|
107
|
-
Downloaded hmac v0.12.1
|
|
108
|
-
Downloaded hashbrown v0.16.0
|
|
109
|
-
Downloaded getrandom v0.2.16
|
|
110
|
-
Downloaded ecdsa v0.16.9
|
|
111
|
-
Downloaded dtor-proc-macro v0.0.6
|
|
112
|
-
Downloaded bytes-lit v0.0.5
|
|
113
49
|
Downloaded block-buffer v0.9.0
|
|
50
|
+
Downloaded digest v0.9.0
|
|
51
|
+
Downloaded include_dir_macros v0.7.4
|
|
52
|
+
Downloaded heck v0.4.1
|
|
114
53
|
Downloaded anyhow v1.0.100
|
|
115
|
-
Downloaded
|
|
116
|
-
Downloaded num-integer v0.1.46
|
|
117
|
-
Downloaded indexmap-nostd v0.4.0
|
|
118
|
-
Downloaded heck v0.5.0
|
|
119
|
-
Downloaded fnv v1.0.7
|
|
120
|
-
Downloaded elliptic-curve v0.13.8
|
|
121
|
-
Downloaded digest v0.10.7
|
|
122
|
-
Downloaded derivative v2.2.0
|
|
123
|
-
Downloaded data-encoding v2.9.0
|
|
124
|
-
Downloaded soroban-wasmi v0.31.1-soroban.20.0.1
|
|
125
|
-
Downloaded prettyplease v0.2.37
|
|
126
|
-
Downloaded paste v1.0.15
|
|
127
|
-
Downloaded p256 v0.13.2
|
|
128
|
-
Downloaded der v0.7.10
|
|
129
|
-
Downloaded ark-poly v0.4.2
|
|
130
|
-
Downloaded serde_core v1.0.228
|
|
131
|
-
Downloaded proc-macro2 v1.0.103
|
|
132
|
-
Downloaded libm v0.2.15
|
|
133
|
-
Downloaded cpufeatures v0.2.17
|
|
134
|
-
Downloaded ark-ff v0.4.2
|
|
135
|
-
Downloaded serde_derive v1.0.228
|
|
136
|
-
Downloaded serde v1.0.228
|
|
137
|
-
Downloaded schemars v0.9.0
|
|
138
|
-
Downloaded primeorder v0.13.6
|
|
139
|
-
Downloaded ppv-lite86 v0.2.21
|
|
140
|
-
Downloaded escape-bytes v0.1.1
|
|
141
|
-
Downloaded version_check v0.9.5
|
|
142
|
-
Downloaded unicode-ident v1.0.22
|
|
143
|
-
Downloaded time-macros v0.2.24
|
|
144
|
-
Downloaded static_assertions v1.1.0
|
|
145
|
-
Downloaded spki v0.7.3
|
|
146
|
-
Downloaded soroban-env-common v25.0.1
|
|
147
|
-
Downloaded soroban-sdk-macros v25.1.1
|
|
148
|
-
Downloaded soroban-env-macros v25.0.1
|
|
149
|
-
Downloaded signature v2.2.0
|
|
150
|
-
Downloaded soroban-builtin-sdk-macros v25.0.1
|
|
151
|
-
Downloaded sha2 v0.10.9
|
|
152
|
-
Downloaded semver v1.0.27
|
|
153
|
-
Downloaded sec1 v0.7.3
|
|
154
|
-
Downloaded schemars v0.8.22
|
|
155
|
-
Downloaded ryu v1.0.20
|
|
156
|
-
Downloaded ref-cast-impl v1.0.25
|
|
157
|
-
Downloaded ref-cast v1.0.25
|
|
158
|
-
Downloaded rand_core v0.6.4
|
|
159
|
-
Downloaded rand_chacha v0.3.1
|
|
160
|
-
Downloaded powerfmt v0.2.0
|
|
161
|
-
Downloaded wasmi_core v0.13.0
|
|
162
|
-
Downloaded visibility v0.1.1
|
|
163
|
-
Downloaded time-core v0.1.6
|
|
164
|
-
Downloaded thiserror v1.0.69
|
|
165
|
-
Downloaded strsim v0.11.1
|
|
166
|
-
Downloaded stellar-strkey v0.0.16
|
|
167
|
-
Downloaded stellar-strkey v0.0.13
|
|
168
|
-
Downloaded stable_deref_trait v1.2.1
|
|
169
|
-
Downloaded stellar-xdr v25.0.0
|
|
54
|
+
Downloaded glob v0.3.3
|
|
170
55
|
Downloaded sha2 v0.9.9
|
|
171
|
-
Downloaded
|
|
172
|
-
Downloaded
|
|
173
|
-
Downloaded
|
|
174
|
-
Downloaded
|
|
175
|
-
|
|
176
|
-
Downloaded ahash v0.8.12
|
|
177
|
-
Downloaded hashbrown v0.13.2
|
|
178
|
-
Downloaded curve25519-dalek v4.1.3
|
|
179
|
-
Downloaded chrono v0.4.42
|
|
180
|
-
Downloaded opaque-debug v0.3.1
|
|
181
|
-
Downloaded generic-array v0.14.9
|
|
182
|
-
Downloaded ethnum v1.5.2
|
|
183
|
-
Downloaded either v1.15.0
|
|
184
|
-
Downloaded darling v0.21.3
|
|
185
|
-
Downloaded const-oid v0.9.6
|
|
186
|
-
Downloaded block-buffer v0.10.4
|
|
187
|
-
Downloaded base64ct v1.8.0
|
|
188
|
-
Downloaded digest v0.9.0
|
|
189
|
-
Downloaded ctor v0.5.0
|
|
56
|
+
Downloaded unicode-ident v1.0.22
|
|
57
|
+
Downloaded base64 v0.21.7
|
|
58
|
+
Downloaded soroban-spec-typescript v25.1.0
|
|
59
|
+
Downloaded schemars v1.0.5
|
|
60
|
+
Blocking waiting for file lock on package cache
|
|
190
61
|
Compiling proc-macro2 v1.0.103
|
|
191
62
|
Compiling quote v1.0.41
|
|
192
63
|
Compiling unicode-ident v1.0.22
|
|
@@ -196,15 +67,15 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
196
67
|
Compiling serde v1.0.228
|
|
197
68
|
Compiling serde_json v1.0.145
|
|
198
69
|
Checking cfg-if v1.0.4
|
|
70
|
+
Compiling ryu v1.0.20
|
|
199
71
|
Compiling memchr v2.7.6
|
|
200
72
|
Compiling itoa v1.0.15
|
|
201
|
-
Compiling ryu v1.0.20
|
|
202
73
|
Checking subtle v2.6.1
|
|
203
74
|
Checking const-oid v0.9.6
|
|
204
75
|
Compiling libc v0.2.177
|
|
205
76
|
Compiling autocfg v1.5.0
|
|
206
|
-
Compiling fnv v1.0.7
|
|
207
77
|
Compiling ident_case v1.0.1
|
|
78
|
+
Compiling fnv v1.0.7
|
|
208
79
|
Compiling strsim v0.11.1
|
|
209
80
|
Compiling schemars v0.8.22
|
|
210
81
|
Compiling zerocopy v0.8.27
|
|
@@ -214,76 +85,76 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
214
85
|
Compiling paste v1.0.15
|
|
215
86
|
Compiling dyn-clone v1.0.20
|
|
216
87
|
Compiling generic-array v0.14.9
|
|
88
|
+
Checking either v1.15.0
|
|
217
89
|
Compiling num-traits v0.2.19
|
|
218
|
-
Compiling either v1.15.0
|
|
219
|
-
Compiling thiserror v1.0.69
|
|
220
90
|
Compiling data-encoding v2.9.0
|
|
91
|
+
Compiling thiserror v1.0.69
|
|
92
|
+
Checking itertools v0.10.5
|
|
221
93
|
Compiling ahash v0.8.12
|
|
222
|
-
Compiling escape-bytes v0.1.1
|
|
223
94
|
Compiling ethnum v1.5.2
|
|
95
|
+
Compiling escape-bytes v0.1.1
|
|
224
96
|
Compiling rustc_version v0.4.1
|
|
225
97
|
Checking hashbrown v0.16.0
|
|
226
|
-
Checking base16ct v0.2.0
|
|
227
|
-
Checking itertools v0.10.5
|
|
228
|
-
Checking once_cell v1.21.3
|
|
229
98
|
Compiling prettyplease v0.2.37
|
|
230
|
-
Checking
|
|
231
|
-
Compiling block-buffer v0.10.4
|
|
232
|
-
Compiling crypto-common v0.1.6
|
|
99
|
+
Checking once_cell v1.21.3
|
|
233
100
|
Checking getrandom v0.2.16
|
|
234
|
-
|
|
235
|
-
|
|
101
|
+
Checking equivalent v1.0.2
|
|
102
|
+
Checking base16ct v0.2.0
|
|
236
103
|
Checking rand_core v0.6.4
|
|
237
104
|
Checking base64 v0.22.1
|
|
105
|
+
Compiling crypto-common v0.1.6
|
|
106
|
+
Compiling block-buffer v0.10.4
|
|
107
|
+
Checking ff v0.13.1
|
|
238
108
|
Checking indexmap v2.12.0
|
|
239
|
-
Checking num-bigint v0.4.6
|
|
240
109
|
Compiling libm v0.2.15
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
Compiling curve25519-dalek v4.1.3
|
|
244
|
-
Compiling syn v2.0.108
|
|
245
|
-
Checking indexmap-nostd v0.4.0
|
|
246
|
-
Checking ppv-lite86 v0.2.21
|
|
110
|
+
Checking num-integer v0.1.46
|
|
111
|
+
Compiling digest v0.10.7
|
|
247
112
|
Checking group v0.13.0
|
|
113
|
+
Checking ppv-lite86 v0.2.21
|
|
114
|
+
Checking num-bigint v0.4.6
|
|
115
|
+
Compiling sha2 v0.10.9
|
|
116
|
+
Checking hashbrown v0.13.2
|
|
248
117
|
Checking wasmparser v0.116.1
|
|
118
|
+
Compiling curve25519-dalek v4.1.3
|
|
119
|
+
Checking rand_chacha v0.3.1
|
|
249
120
|
Checking downcast-rs v1.2.1
|
|
121
|
+
Checking indexmap-nostd v0.4.0
|
|
122
|
+
Checking rand v0.8.5
|
|
123
|
+
Compiling syn v2.0.108
|
|
250
124
|
Checking wasmparser-nostd v0.100.2
|
|
251
|
-
Checking smallvec v1.15.1
|
|
252
|
-
Checking wasmi_arena v0.4.1
|
|
253
|
-
Checking hashbrown v0.13.2
|
|
254
125
|
Compiling heapless v0.8.0
|
|
255
|
-
Checking
|
|
256
|
-
Checking spin v0.9.8
|
|
126
|
+
Checking wasmi_arena v0.4.1
|
|
257
127
|
Checking byteorder v1.5.0
|
|
128
|
+
Checking spin v0.9.8
|
|
129
|
+
Checking wasmi_core v0.13.0
|
|
130
|
+
Checking smallvec v1.15.1
|
|
131
|
+
Checking hash32 v0.3.1
|
|
258
132
|
Checking keccak v0.1.5
|
|
259
|
-
Compiling
|
|
260
|
-
Checking rand v0.8.5
|
|
133
|
+
Compiling heck v0.5.0
|
|
261
134
|
Compiling soroban-env-host v25.0.1
|
|
135
|
+
Compiling static_assertions v1.1.0
|
|
262
136
|
Checking stable_deref_trait v1.2.1
|
|
263
|
-
Compiling heck v0.5.0
|
|
264
137
|
Checking hex-literal v0.4.1
|
|
265
138
|
Compiling itertools v0.14.0
|
|
266
|
-
Checking hash32 v0.3.1
|
|
267
|
-
Checking wasmi_core v0.13.0
|
|
268
139
|
Compiling include_dir_macros v0.7.4
|
|
269
140
|
Checking glob v0.3.3
|
|
270
141
|
Checking opaque-debug v0.3.1
|
|
142
|
+
Checking ark-std v0.4.0
|
|
271
143
|
Compiling anyhow v1.0.100
|
|
272
|
-
Checking heck v0.4.1
|
|
273
144
|
Checking base64 v0.21.7
|
|
274
|
-
Checking
|
|
275
|
-
Checking
|
|
145
|
+
Checking heck v0.4.1
|
|
146
|
+
Checking oapps v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps)
|
|
276
147
|
Checking workers v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers)
|
|
277
|
-
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
278
148
|
Checking macro-integration-tests v0.0.1 (/workspace/contracts/protocol/stellar/contracts/macro-integration-tests)
|
|
279
|
-
Checking
|
|
149
|
+
Checking message-libs v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs)
|
|
150
|
+
Checking include_dir v0.7.4
|
|
280
151
|
Checking soroban-wasmi v0.31.1-soroban.20.0.1
|
|
281
|
-
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
282
152
|
Checking oapp-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp-macros)
|
|
153
|
+
Checking common-macros v0.0.1 (/workspace/contracts/protocol/stellar/contracts/common-macros)
|
|
283
154
|
Compiling ark-serialize-derive v0.4.2
|
|
284
155
|
Compiling ark-ff-macros v0.4.2
|
|
285
|
-
Compiling ark-ff-asm v0.4.2
|
|
286
156
|
Compiling derivative v2.2.0
|
|
157
|
+
Compiling ark-ff-asm v0.4.2
|
|
287
158
|
Compiling darling_core v0.21.3
|
|
288
159
|
Compiling darling_core v0.20.11
|
|
289
160
|
Compiling macro-string v0.1.4
|
|
@@ -299,40 +170,40 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
299
170
|
Checking zeroize v1.8.2
|
|
300
171
|
Checking der v0.7.10
|
|
301
172
|
Checking crypto-bigint v0.5.5
|
|
302
|
-
Checking digest v0.9.0
|
|
303
173
|
Checking block-buffer v0.9.0
|
|
304
|
-
Checking
|
|
174
|
+
Checking digest v0.9.0
|
|
305
175
|
Checking sec1 v0.7.3
|
|
306
|
-
Checking
|
|
176
|
+
Checking sha2 v0.9.9
|
|
307
177
|
Checking ark-serialize v0.4.2
|
|
178
|
+
Checking signature v2.2.0
|
|
308
179
|
Checking hmac v0.12.1
|
|
309
180
|
Checking sha3 v0.10.8
|
|
310
181
|
Checking elliptic-curve v0.13.8
|
|
182
|
+
Compiling darling_macro v0.20.11
|
|
311
183
|
Checking rfc6979 v0.4.0
|
|
312
|
-
Checking ark-ff v0.4.2
|
|
313
|
-
Compiling darling_macro v0.21.3
|
|
314
184
|
Checking ed25519 v2.2.3
|
|
315
|
-
Checking
|
|
185
|
+
Checking ark-ff v0.4.2
|
|
316
186
|
Checking ecdsa v0.16.9
|
|
317
|
-
|
|
187
|
+
Checking primeorder v0.13.6
|
|
318
188
|
Checking hex v0.4.3
|
|
319
189
|
Compiling crate-git-revision v0.0.6
|
|
320
|
-
|
|
190
|
+
Compiling darling_macro v0.21.3
|
|
321
191
|
Checking k256 v0.13.4
|
|
322
192
|
Checking p256 v0.13.2
|
|
193
|
+
Checking ed25519-dalek v2.2.0
|
|
323
194
|
Compiling stellar-strkey v0.0.13
|
|
324
195
|
Compiling stellar-xdr v25.0.0
|
|
325
196
|
Compiling soroban-env-common v25.0.1
|
|
326
197
|
Compiling stellar-strkey v0.0.16
|
|
327
198
|
Compiling soroban-sdk v25.1.1
|
|
328
|
-
Compiling darling v0.21.3
|
|
329
199
|
Compiling darling v0.20.11
|
|
200
|
+
Compiling darling v0.21.3
|
|
330
201
|
Compiling serde_with_macros v3.15.1
|
|
331
|
-
Compiling serde_with v3.15.1
|
|
332
202
|
Checking ark-poly v0.4.2
|
|
203
|
+
Compiling serde_with v3.15.1
|
|
333
204
|
Checking ark-ec v0.4.2
|
|
334
|
-
Checking ark-bls12-381 v0.4.0
|
|
335
205
|
Checking ark-bn254 v0.4.0
|
|
206
|
+
Checking ark-bls12-381 v0.4.0
|
|
336
207
|
Checking soroban-spec v25.1.1
|
|
337
208
|
Checking soroban-spec-typescript v25.1.0
|
|
338
209
|
Checking ts-bindings-gen v0.0.1 (/workspace/contracts/protocol/stellar/tools/ts-bindings-gen)
|
|
@@ -343,23 +214,23 @@ $ docker run --rm -e RUSTC_WRAPPER=/usr/local/bin/sccache -e CARGO_TARGET_X86_64
|
|
|
343
214
|
Checking fee-lib-interfaces v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/fee-lib-interfaces)
|
|
344
215
|
Checking endpoint-v2 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/endpoint-v2)
|
|
345
216
|
Checking worker v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/worker)
|
|
346
|
-
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
347
|
-
Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
348
217
|
Checking dvn-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn-fee-lib)
|
|
218
|
+
Checking upgrader v0.0.1 (/workspace/contracts/protocol/stellar/contracts/upgrader)
|
|
349
219
|
Checking price-feed v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/price-feed)
|
|
220
|
+
Checking sac-manager v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/sac-manager)
|
|
350
221
|
Checking message-lib-common v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/message-lib-common)
|
|
351
222
|
Checking oapp v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oapp)
|
|
352
223
|
Checking blocked-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/blocked-message-lib)
|
|
353
224
|
Checking executor v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor)
|
|
354
225
|
Checking uln302 v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/uln-302)
|
|
226
|
+
Checking simple-message-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/simple-message-lib)
|
|
355
227
|
Checking treasury v0.0.1 (/workspace/contracts/protocol/stellar/contracts/message-libs/treasury)
|
|
356
|
-
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
357
228
|
Checking dvn v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/dvn)
|
|
358
|
-
Checking
|
|
229
|
+
Checking executor-fee-lib v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-fee-lib)
|
|
359
230
|
Checking oft-core v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft-core)
|
|
360
231
|
Checking counter v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/counter)
|
|
361
232
|
Checking executor-helper v0.0.1 (/workspace/contracts/protocol/stellar/contracts/workers/executor-helper)
|
|
362
|
-
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
363
233
|
Checking layerzero-views v0.0.1 (/workspace/contracts/protocol/stellar/contracts/layerzero-views)
|
|
364
|
-
|
|
365
|
-
|
|
234
|
+
Checking oft v0.0.1 (/workspace/contracts/protocol/stellar/contracts/oapps/oft)
|
|
235
|
+
Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 46s
|
|
236
|
+
⏱️ bash -c cargo clippy -- -D warnings: 2:47.630 (m:ss.mmm)
|