Build #2649026 2025-11-09 15:43:41
# rustc version
rustc 1.93.0-nightly (fb23dd3c6 2025-11-08)# docs.rs version
docsrs 0.6.0 (fb84acf8 2025-11-04)# build log
[INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/logging_timer-1.1.1/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/logging_timer-1.1.1/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20251108-1.93.0-nightly-fb23dd3c6\", \"--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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 691edd00ee12f9272ee01b014659e995c9f76d926d9143164d7c389060c6816b
[INFO] running `Command { std: "docker" "start" "-a" "691edd00ee12f9272ee01b014659e995c9f76d926d9143164d7c389060c6816b", kill_on_drop: false }`
[INFO] [stderr] warning: Rustdoc did not scrape the following examples because they require dev-dependencies: logging_demo
[INFO] [stderr] If you want Rustdoc to scrape these examples, then add `doc-scrape-examples = true`
[INFO] [stderr] to the [[example]] target configuration of at least one example.
[INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op
[INFO] [stderr] Documenting logging_timer v1.1.1 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unknown attribute `norun`
[INFO] [stderr] --> src/lib.rs:1:1
[INFO] [stderr] |
[INFO] [stderr] 1 | / //! This crate provides a couple of simple timers that log messages indicating the elapsed
[INFO] [stderr] 2 | | //! time between their creation and dropping. Messages are output via the
[INFO] [stderr] 3 | | //! [log](https://crates.io/crates/log) crate.
[INFO] [stderr] 4 | | //!
[INFO] [stderr] ... |
[INFO] [stderr] 151 | | //! struct and `[dnscan/src/main.rs/63]` is the filename and number from `Record` - this captures the place where the timer was
[INFO] [stderr] 152 | | //! instantiated. The module is also set, but is not shown in these examples.
[INFO] [stderr] | |_____________________________________________________________________________^
[INFO] [stderr] |
[INFO] [stderr] = help: use `no_run` to compile, but not run, the code sample during testing
[INFO] [stderr] = help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
[INFO] [stderr] = note: `#[warn(rustdoc::invalid_codeblock_attributes)]` on by default
[INFO] [stderr]
[INFO] [stderr] warning: unknown attribute `norun`
[INFO] [stderr] --> src/lib.rs:260:5
[INFO] [stderr] |
[INFO] [stderr] 260 | / /// Sets the logging level.
[INFO] [stderr] 261 | | /// Note that this consumes self, so that it can be called in a one-liner like this:
[INFO] [stderr] 262 | | ///
[INFO] [stderr] 263 | | /// ```norun
[INFO] [stderr] 264 | | /// let tmr = timer!("foo").level(Level::Trace);
[INFO] [stderr] 265 | | /// ```
[INFO] [stderr] | |___________^
[INFO] [stderr] |
[INFO] [stderr] = help: use `no_run` to compile, but not run, the code sample during testing
[INFO] [stderr] = help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
[INFO] [stderr]
[INFO] [stderr] warning: unknown attribute `norun`
[INFO] [stderr] --> src/lib.rs:370:1
[INFO] [stderr] |
[INFO] [stderr] 370 | / /// Creates a timer that does not log a starting message, only a finished one.
[INFO] [stderr] 371 | | ///
[INFO] [stderr] 372 | | /// # Examples
[INFO] [stderr] 373 | | /// Note that when specifying the log level you must use a semi-colon as a
[INFO] [stderr] ... |
[INFO] [stderr] 383 | | /// let _tmr4 = timer!(Level::Trace; "FIND_FILES", "Found {} files", 42);
[INFO] [stderr] 384 | | /// ```
[INFO] [stderr] | |_______^
[INFO] [stderr] |
[INFO] [stderr] = help: use `no_run` to compile, but not run, the code sample during testing
[INFO] [stderr] = help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
[INFO] [stderr]
[INFO] [stderr] warning: unknown attribute `norun`
[INFO] [stderr] --> src/lib.rs:466:1
[INFO] [stderr] |
[INFO] [stderr] 466 | / /// Creates a timer that logs a starting mesage and a finished message.
[INFO] [stderr] 467 | | ///
[INFO] [stderr] 468 | | /// # Examples
[INFO] [stderr] 469 | | /// Note that when specifying the log level you must use a semi-colon as a
[INFO] [stderr] ... |
[INFO] [stderr] 479 | | /// let _tmr4 = stimer!(Level::Trace; "FIND_FILES", "Found {} files", 42);
[INFO] [stderr] 480 | | /// ```
[INFO] [stderr] | |_______^
[INFO] [stderr] |
[INFO] [stderr] = help: use `no_run` to compile, but not run, the code sample during testing
[INFO] [stderr] = help: this code block may be skipped during testing, because unknown attributes are treated as markers for code samples written in other programming languages, unless it is also explicitly marked as `rust`
[INFO] [stderr]
[INFO] [stderr] warning: `logging_timer` (lib doc) generated 4 warnings
[INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.43s
[INFO] [stderr] Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/logging_timer/index.html
[INFO] running `Command { std: "docker" "inspect" "691edd00ee12f9272ee01b014659e995c9f76d926d9143164d7c389060c6816b", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "691edd00ee12f9272ee01b014659e995c9f76d926d9143164d7c389060c6816b", kill_on_drop: false }`
[INFO] [stdout] 691edd00ee12f9272ee01b014659e995c9f76d926d9143164d7c389060c6816b