Build #1674185 2025-01-26T15:43:40.216314+00:00
# rustc version
rustc 1.86.0-nightly (f7cc13af8 2025-01-25)# docs.rs version
docsrs 0.6.0 (29a0e81b 2025-01-22)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace-builder/builds/irox-imagery-0.1.2/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace-builder/builds/irox-imagery-0.1.2/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:c80049f3b88b82089a44e0f06d0d6029d44b96b7257e55a1cd63dbc9f4c33334" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20250125-1.86.0-nightly-f7cc13af8\", \"--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] cb600db06d0c1806d43447504295263732737757f5042cd9fc25199258d5d88f
[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" "cb600db06d0c1806d43447504295263732737757f5042cd9fc25199258d5d88f", kill_on_drop: false }`
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr] Documenting irox-imagery v0.1.2 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `irox_tools::static_init`
[INFO] [stderr] --> src/tiff/tags.rs:7:5
[INFO] [stderr] |
[INFO] [stderr] 7 | use irox_tools::static_init;
[INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ no `static_init` in the root
[INFO] [stderr]
[INFO] [stderr] error[E0432]: unresolved import `crate::tags::get_geokey_directory_tags`
[INFO] [stderr] --> src/tiff.rs:5:19
[INFO] [stderr] |
[INFO] [stderr] 5 | use crate::tags::{get_geokey_directory_tags, GEO_KEY_DIRECTORY, KNOWN_TAG_TYPES};
[INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ no `get_geokey_directory_tags` in `tiff::tags`
[INFO] [stderr]
[INFO] [stderr] error: cannot find macro `format` in this scope
[INFO] [stderr] --> src/tiff.rs:37:35
[INFO] [stderr] |
[INFO] [stderr] 37 | str.field(&name, &format!("{:?}", v.value));
[INFO] [stderr] | ^^^^^^
[INFO] [stderr] |
[INFO] [stderr] help: consider importing one of these macros
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::format;
[INFO] [stderr] |
[INFO] [stderr] 5 + use irox_tools::format;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error: cannot find macro `format` in this scope
[INFO] [stderr] --> src/tiff.rs:32:17
[INFO] [stderr] |
[INFO] [stderr] 32 | format!("UNK({})", v.tag)
[INFO] [stderr] | ^^^^^^
[INFO] [stderr] |
[INFO] [stderr] help: consider importing one of these macros
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::format;
[INFO] [stderr] |
[INFO] [stderr] 5 + use irox_tools::format;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error: cannot find macro `format` in this scope
[INFO] [stderr] --> src/tiff.rs:30:17
[INFO] [stderr] |
[INFO] [stderr] 30 | format!("{}({})", tag.name, tag.tag_id)
[INFO] [stderr] | ^^^^^^
[INFO] [stderr] |
[INFO] [stderr] help: consider importing one of these macros
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::format;
[INFO] [stderr] |
[INFO] [stderr] 5 + use irox_tools::format;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff/geo.rs:19:15
[INFO] [stderr] |
[INFO] [stderr] 19 | pub keys: Vec<KeyEntry>,
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff/geo.rs:32:28
[INFO] [stderr] |
[INFO] [stderr] 32 | pub fn keys(&self) -> &Vec<KeyEntry> {
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:117:16
[INFO] [stderr] |
[INFO] [stderr] 117 | ParsedByte(Vec<u8>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `String` in this scope
[INFO] [stderr] --> src/tiff.rs:118:17
[INFO] [stderr] |
[INFO] [stderr] 118 | ParsedAscii(String),
[INFO] [stderr] | ^^^^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::string::String;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:120:18
[INFO] [stderr] |
[INFO] [stderr] 120 | ParsedShorts(Vec<u16>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:122:17
[INFO] [stderr] |
[INFO] [stderr] 122 | ParsedLongs(Vec<u32>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:123:20
[INFO] [stderr] |
[INFO] [stderr] 123 | ParsedRational(Vec<(u32, u32)>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:124:17
[INFO] [stderr] |
[INFO] [stderr] 124 | ParsedSByte(Vec<i8>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:125:18
[INFO] [stderr] |
[INFO] [stderr] 125 | ParsedSShort(Vec<i16>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:126:17
[INFO] [stderr] |
[INFO] [stderr] 126 | ParsedSLong(Vec<i32>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:127:21
[INFO] [stderr] |
[INFO] [stderr] 127 | ParsedSRational(Vec<(i32, i32)>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:129:18
[INFO] [stderr] |
[INFO] [stderr] 129 | ParsedFloats(Vec<f32>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0412]: cannot find type `Vec` in this scope
[INFO] [stderr] --> src/tiff.rs:131:19
[INFO] [stderr] |
[INFO] [stderr] 131 | ParsedDoubles(Vec<f64>),
[INFO] [stderr] | ^^^ not found in this scope
[INFO] [stderr] |
[INFO] [stderr] help: consider importing this struct
[INFO] [stderr] |
[INFO] [stderr] 5 + use alloc::vec::Vec;
[INFO] [stderr] |
[INFO] [stderr]
[INFO] [stderr] error[E0658]: `#[doc(cfg)]` is experimental
[INFO] [stderr] --> src/lib.rs:21:1
[INFO] [stderr] |
[INFO] [stderr] 21 | / cfg_feature_std! {
[INFO] [stderr] 22 | | pub use tiff::*;
[INFO] [stderr] 23 | | mod tiff;
[INFO] [stderr] 24 | | }
[INFO] [stderr] | |_^
[INFO] [stderr] |
[INFO] [stderr] = note: see issue #43781 <https://github.com/rust-lang/rust/issues/43781> for more information
[INFO] [stderr] = help: add `#![feature(doc_cfg)]` to the crate attributes to enable
[INFO] [stderr] = note: this compiler was built on 2025-01-25; consider upgrading it if it is out of date
[INFO] [stderr] = note: this error originates in the macro `cfg_feature_std` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr]
[INFO] [stderr] Some errors have detailed explanations: E0412, E0432, E0658.
[INFO] [stderr] For more information about an error, try `rustc --explain E0412`.
[INFO] [stderr] error: could not document `irox-imagery`
[INFO] running `Command { std: "docker" "inspect" "cb600db06d0c1806d43447504295263732737757f5042cd9fc25199258d5d88f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "cb600db06d0c1806d43447504295263732737757f5042cd9fc25199258d5d88f", kill_on_drop: false }`
[INFO] [stdout] cb600db06d0c1806d43447504295263732737757f5042cd9fc25199258d5d88f