solders-message 0.21.0

Solders message crate.
Documentation
Build #1156928 2024-03-13T20:34:24.528927+00:00
# rustc version
rustc 1.78.0-nightly (a165f1f65 2024-03-12)# docs.rs version
docsrs 0.6.0 (e00048fe 2024-03-13)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace-builder/builds/solders-message-0.21.0/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace-builder/builds/solders-message-0.21.0/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace-builder/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace-builder/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "6442450944" "--cpus" "6" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:2788e3201cd34a07e3172128adcd8b3090168a8e3bcc40d7c032b9dda1df7d1c" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20240312-1.78.0-nightly-a165f1f65\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--extern-html-root-takes-precedence\"]" "--offline" "-Zunstable-options" "--config=doc.extern-map.registries.crates-io=\"https://docs.rs/{pkg_name}/{version}/x86_64-unknown-linux-gnu\"" "-Zrustdoc-scrape-examples" "-j6" "--target" "x86_64-unknown-linux-gnu", kill_on_drop: false }`
[INFO] [stdout] 9a859a898ce3132b17a414a845476702eeead343f8e489db29d011dd9c828262
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `Command { std: "docker" "start" "-a" "9a859a898ce3132b17a414a845476702eeead343f8e489db29d011dd9c828262", kill_on_drop: false }`
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr]  Documenting solders-message v0.21.0 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:140:1
[INFO] [stderr]     |
[INFO] [stderr] 140 | / /// A Solana transaction message.
[INFO] [stderr] 141 | | ///
[INFO] [stderr] 142 | | /// Some constructors accept an optional `payer`, the account responsible for
[INFO] [stderr] 143 | | /// paying the cost of executing a transaction. In most cases, callers should
[INFO] [stderr] ...   |
[INFO] [stderr] 169 | | ///     >>> tx = Transaction([payer], message, blockhash)
[INFO] [stderr] 170 | | ///
[INFO] [stderr]     | |___^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> arbitrary_instruction_data = bytes([1])
[INFO] [stderr]                                                         ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr]     = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `instruction`
[INFO] [stderr]    --> src/lib.rs:140:1
[INFO] [stderr]     |
[INFO] [stderr] 140 | / /// A Solana transaction message.
[INFO] [stderr] 141 | | ///
[INFO] [stderr] 142 | | /// Some constructors accept an optional `payer`, the account responsible for
[INFO] [stderr] 143 | | /// paying the cost of executing a transaction. In most cases, callers should
[INFO] [stderr] ...   |
[INFO] [stderr] 169 | | ///     >>> tx = Transaction([payer], message, blockhash)
[INFO] [stderr] 170 | | ///
[INFO] [stderr]     | |___^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> message = Message([instruction], payer.pubkey())
[INFO] [stderr]                                        ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `instruction` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `payer`
[INFO] [stderr]    --> src/lib.rs:140:1
[INFO] [stderr]     |
[INFO] [stderr] 140 | / /// A Solana transaction message.
[INFO] [stderr] 141 | | ///
[INFO] [stderr] 142 | | /// Some constructors accept an optional `payer`, the account responsible for
[INFO] [stderr] 143 | | /// paying the cost of executing a transaction. In most cases, callers should
[INFO] [stderr] ...   |
[INFO] [stderr] 169 | | ///     >>> tx = Transaction([payer], message, blockhash)
[INFO] [stderr] 170 | | ///
[INFO] [stderr]     | |___^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> tx = Transaction([payer], message, blockhash)
[INFO] [stderr]                                       ^^^^^
[INFO] [stderr]     = note: no item named `payer` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:222:5
[INFO] [stderr]     |
[INFO] [stderr] 222 | /     /// Create a new message while setting the blockhash.
[INFO] [stderr] 223 | |     ///
[INFO] [stderr] 224 | |     /// Args:
[INFO] [stderr] 225 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 248 | |     ///     >>> tx.sign([payer], tx.message.recent_blockhash)
[INFO] [stderr] 249 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> arbitrary_instruction_data = bytes([1])
[INFO] [stderr]                                                         ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `AccountMeta`
[INFO] [stderr]    --> src/lib.rs:222:5
[INFO] [stderr]     |
[INFO] [stderr] 222 | /     /// Create a new message while setting the blockhash.
[INFO] [stderr] 223 | |     ///
[INFO] [stderr] 224 | |     /// Args:
[INFO] [stderr] 225 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 248 | |     ///     >>> tx.sign([payer], tx.message.recent_blockhash)
[INFO] [stderr] 249 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> accounts: List[AccountMeta] = []
[INFO] [stderr]                                    ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `AccountMeta` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `instruction`
[INFO] [stderr]    --> src/lib.rs:222:5
[INFO] [stderr]     |
[INFO] [stderr] 222 | /     /// Create a new message while setting the blockhash.
[INFO] [stderr] 223 | |     ///
[INFO] [stderr] 224 | |     /// Args:
[INFO] [stderr] 225 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 248 | |     ///     >>> tx.sign([payer], tx.message.recent_blockhash)
[INFO] [stderr] 249 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> message = Message.new_with_blockhash([instruction], payer.pubkey(), blockhash)
[INFO] [stderr]                                                           ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `instruction` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `payer`
[INFO] [stderr]    --> src/lib.rs:222:5
[INFO] [stderr]     |
[INFO] [stderr] 222 | /     /// Create a new message while setting the blockhash.
[INFO] [stderr] 223 | |     ///
[INFO] [stderr] 224 | |     /// Args:
[INFO] [stderr] 225 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 248 | |     ///     >>> tx.sign([payer], tx.message.recent_blockhash)
[INFO] [stderr] 249 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> tx.sign([payer], tx.message.recent_blockhash)
[INFO] [stderr]                              ^^^^^
[INFO] [stderr]     = note: no item named `payer` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:268:5
[INFO] [stderr]     |
[INFO] [stderr] 268 | /     /// Create a new message for a `nonced transaction <https://docs.solana.com/implemented-proposals/durable-tx-nonces>`_.
[INFO] [stderr] 269 | |     ///
[INFO] [stderr] 270 | |     /// Args:
[INFO] [stderr] 271 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 297 | |     ///     >>> tx = Transaction.new_unsigned(message)
[INFO] [stderr] 298 | |     ///     
[INFO] [stderr]     | |____________^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> arbitrary_instruction_data = bytes([1])
[INFO] [stderr]                                                         ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `AccountMeta`
[INFO] [stderr]    --> src/lib.rs:268:5
[INFO] [stderr]     |
[INFO] [stderr] 268 | /     /// Create a new message for a `nonced transaction <https://docs.solana.com/implemented-proposals/durable-tx-nonces>`_.
[INFO] [stderr] 269 | |     ///
[INFO] [stderr] 270 | |     /// Args:
[INFO] [stderr] 271 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 297 | |     ///     >>> tx = Transaction.new_unsigned(message)
[INFO] [stderr] 298 | |     ///     
[INFO] [stderr]     | |____________^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> accounts: List[AccountMeta] = []
[INFO] [stderr]                                    ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `AccountMeta` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `instruction`
[INFO] [stderr]    --> src/lib.rs:268:5
[INFO] [stderr]     |
[INFO] [stderr] 268 | /     /// Create a new message for a `nonced transaction <https://docs.solana.com/implemented-proposals/durable-tx-nonces>`_.
[INFO] [stderr] 269 | |     ///
[INFO] [stderr] 270 | |     /// Args:
[INFO] [stderr] 271 | |     ///     instructions (Sequence[Instruction]): The instructions to include in the message.
[INFO] [stderr] ...   |
[INFO] [stderr] 297 | |     ///     >>> tx = Transaction.new_unsigned(message)
[INFO] [stderr] 298 | |     ///     
[INFO] [stderr]     | |____________^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> message = Message.new_with_nonce([instruction], payer.pubkey(), nonce_account, payer.pubkey())
[INFO] [stderr]                                                       ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `instruction` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:506:5
[INFO] [stderr]     |
[INFO] [stderr] 506 | /     /// Deserialize a serialized ``Message`` object.
[INFO] [stderr] 507 | |     ///
[INFO] [stderr] 508 | |     /// Args:
[INFO] [stderr] 509 | |     ///     data (bytes): The serialized ``Message``.
[INFO] [stderr] ...   |
[INFO] [stderr] 526 | |     ///     >>> assert Message.from_bytes(serialized) == message
[INFO] [stderr] 527 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> instruction_data = bytes([1])
[INFO] [stderr]                                               ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `instruction`
[INFO] [stderr]    --> src/lib.rs:506:5
[INFO] [stderr]     |
[INFO] [stderr] 506 | /     /// Deserialize a serialized ``Message`` object.
[INFO] [stderr] 507 | |     ///
[INFO] [stderr] 508 | |     /// Args:
[INFO] [stderr] 509 | |     ///     data (bytes): The serialized ``Message``.
[INFO] [stderr] ...   |
[INFO] [stderr] 526 | |     ///     >>> assert Message.from_bytes(serialized) == message
[INFO] [stderr] 527 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> message = Message([instruction])
[INFO] [stderr]                                        ^^^^^^^^^^^
[INFO] [stderr]     = note: no item named `instruction` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:609:1
[INFO] [stderr]     |
[INFO] [stderr] 609 | / /// A Solana transaction message (v0).
[INFO] [stderr] 610 | | ///
[INFO] [stderr] 611 | | /// This message format supports succinct account loading with
[INFO] [stderr] 612 | | /// on-chain address lookup tables
[INFO] [stderr] ...   |
[INFO] [stderr] 637 | | ///     >>> message = MessageV0(header, account_keys, blockhash, instructions, lookups)
[INFO] [stderr] 638 | | ///
[INFO] [stderr]     | |___^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> arbitrary_instruction_data = bytes([1])
[INFO] [stderr]                                                         ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `0`
[INFO] [stderr]    --> src/lib.rs:609:1
[INFO] [stderr]     |
[INFO] [stderr] 609 | / /// A Solana transaction message (v0).
[INFO] [stderr] 610 | | ///
[INFO] [stderr] 611 | | /// This message format supports succinct account loading with
[INFO] [stderr] 612 | | /// on-chain address lookup tables
[INFO] [stderr] ...   |
[INFO] [stderr] 637 | | ///     >>> message = MessageV0(header, account_keys, blockhash, instructions, lookups)
[INFO] [stderr] 638 | | ///
[INFO] [stderr]     | |___^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> lookups = [MessageAddressTableLookup(Pubkey.new_unique(), bytes([1, 2, 3]), bytes([0]))]
[INFO] [stderr]                                                                                                        ^
[INFO] [stderr]     = note: no item named `0` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `0`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> payer = keys[0]
[INFO] [stderr]                                  ^
[INFO] [stderr]     = note: no item named `0` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `6`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> program_id = keys[6]
[INFO] [stderr]                                       ^
[INFO] [stderr]     = note: no item named `6` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `1`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> ix_accounts = [AccountMeta(keys[1], True, True), AccountMeta(keys[2], True, False), AccountMeta(keys[3], False, True),AccountMeta(keys[4], False, True),AccountMeta(keys[5], False, False),]
[INFO] [stderr]                                                     ^
[INFO] [stderr]     = note: no item named `1` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `2`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> ix_accounts = [AccountMeta(keys[1], True, True), AccountMeta(keys[2], True, False), AccountMeta(keys[3], False, True),AccountMeta(keys[4], False, True),AccountMeta(keys[5], False, False),]
[INFO] [stderr]                                                                                       ^
[INFO] [stderr]     = note: no item named `2` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `3`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> ix_accounts = [AccountMeta(keys[1], True, True), AccountMeta(keys[2], True, False), AccountMeta(keys[3], False, True),AccountMeta(keys[4], False, True),AccountMeta(keys[5], False, False),]
[INFO] [stderr]                                                                                                                          ^
[INFO] [stderr]     = note: no item named `3` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `4`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> ix_accounts = [AccountMeta(keys[1], True, True), AccountMeta(keys[2], True, False), AccountMeta(keys[3], False, True),AccountMeta(keys[4], False, True),AccountMeta(keys[5], False, False),]
[INFO] [stderr]                                                                                                                                                            ^
[INFO] [stderr]     = note: no item named `4` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `5`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> ix_accounts = [AccountMeta(keys[1], True, True), AccountMeta(keys[2], True, False), AccountMeta(keys[3], False, True),AccountMeta(keys[4], False, True),AccountMeta(keys[5], False, False),]
[INFO] [stderr]                                                                                                                                                                                              ^
[INFO] [stderr]     = note: no item named `5` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `4`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> lookup_acc0 = AddressLookupTableAccount(key=Pubkey.new_unique(), addresses=[keys[4], keys[5], keys[6]])
[INFO] [stderr]                                                                                                      ^
[INFO] [stderr]     = note: no item named `4` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `5`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> lookup_acc0 = AddressLookupTableAccount(key=Pubkey.new_unique(), addresses=[keys[4], keys[5], keys[6]])
[INFO] [stderr]                                                                                                               ^
[INFO] [stderr]     = note: no item named `5` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: unresolved link to `6`
[INFO] [stderr]    --> src/lib.rs:712:5
[INFO] [stderr]     |
[INFO] [stderr] 712 | /     /// Create a signable transaction message from a ``payer`` public key, ``recent_blockhash``,
[INFO] [stderr] 713 | |     /// list of ``instructions``, and a list of ``address_lookup_table_accounts``.
[INFO] [stderr] 714 | |     ///
[INFO] [stderr] 715 | |     /// Args:
[INFO] [stderr] ...   |
[INFO] [stderr] 737 | |     ///     >>> msg = MessageV0.try_compile(payer, instructions, lookup_accs, recent_blockhash)
[INFO] [stderr] 738 | |     ///
[INFO] [stderr]     | |_______^
[INFO] [stderr]     |
[INFO] [stderr]     = note: the link appears in this line:
[INFO] [stderr]             
[INFO] [stderr]                 >>> lookup_acc0 = AddressLookupTableAccount(key=Pubkey.new_unique(), addresses=[keys[4], keys[5], keys[6]])
[INFO] [stderr]                                                                                                                        ^
[INFO] [stderr]     = note: no item named `6` in scope
[INFO] [stderr]     = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:456:5
[INFO] [stderr]     |
[INFO] [stderr] 456 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.program_position
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.program_position>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr]     = note: `#[warn(rustdoc::bare_urls)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:461:5
[INFO] [stderr]     |
[INFO] [stderr] 461 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.maybe_executable
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.maybe_executable>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:466:5
[INFO] [stderr]     |
[INFO] [stderr] 466 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_writable
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_writable>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:471:5
[INFO] [stderr]     |
[INFO] [stderr] 471 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_signer
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_signer>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:476:5
[INFO] [stderr]     |
[INFO] [stderr] 476 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.signer_keys
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.signer_keys>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr] 
[INFO] [stderr] warning: this URL is not a hyperlink
[INFO] [stderr]    --> src/lib.rs:490:5
[INFO] [stderr]     |
[INFO] [stderr] 490 |     /// See https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_upgradeable_loader_present
[INFO] [stderr]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use an automatic link instead: `<https://docs.rs/solana-sdk/latest/solana_sdk/message/legacy/struct.Message.html#method.is_upgradeable_loader_present>`
[INFO] [stderr]     |
[INFO] [stderr]     = note: bare URLs are not automatically turned into clickable links
[INFO] [stderr] 
[INFO] [stderr] warning: `solders-message` (lib doc) generated 30 warnings (run `cargo fix --lib -p solders-message` to apply 6 suggestions)
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.11s
[INFO] [stderr]    Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/solders_message/index.html
[INFO] running `Command { std: "docker" "inspect" "9a859a898ce3132b17a414a845476702eeead343f8e489db29d011dd9c828262", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "9a859a898ce3132b17a414a845476702eeead343f8e489db29d011dd9c828262", kill_on_drop: false }`
[INFO] [stdout] 9a859a898ce3132b17a414a845476702eeead343f8e489db29d011dd9c828262