forge-codegen 0.7.3

TypeScript code generator for the Forge framework

Build #3059103 2026-03-25 04:36:52

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# error kind ExecutionFailed

# pre-build errors command failed: exit status: 101

# rustc version rustc 1.96.0-nightly (362211dc2 2026-03-24)

# docs.rs version docsrs 0.0.0 (da7690ee 2026-03-15 )

# build log [INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace-builder/builds/forge-codegen-0.7.3/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace-builder/builds/forge-codegen-0.7.3/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20260324-1.96.0-nightly-362211dc2\", \"--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] e83e85ecd371dc7fda46c063cc802535d4e447e2762534101d13d099ef55371d [INFO] running `Command { std: "docker" "start" "-a" "e83e85ecd371dc7fda46c063cc802535d4e447e2762534101d13d099ef55371d", kill_on_drop: false }` [INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op [INFO] [stderr] Checking forge-core v0.7.3 [INFO] [stderr] error: set `DATABASE_URL` to use query macros online, or run `cargo sqlx prepare` to update the query cache [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/forge-core-0.7.3/src/auth/tokens.rs:78:15 [INFO] [stderr] | [INFO] [stderr] 78 | let row = sqlx::query_scalar!( [INFO] [stderr] | _______________^ [INFO] [stderr] 79 | | "DELETE FROM forge_refresh_tokens WHERE token_hash = $1 AND expires_at > now() [INFO] [stderr] 80 | | RETURNING user_id", [INFO] [stderr] 81 | | hash [INFO] [stderr] 82 | | ) [INFO] [stderr] | |_____^ [INFO] [stderr] | [INFO] [stderr] = note: this error originates in the macro `$crate::sqlx_macros::expand_query` which comes from the expansion of the macro `sqlx::query_scalar` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: set `DATABASE_URL` to use query macros online, or run `cargo sqlx prepare` to update the query cache [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/forge-core-0.7.3/src/auth/tokens.rs:91:27 [INFO] [stderr] | [INFO] [stderr] 91 | let expired = sqlx::query_scalar!( [INFO] [stderr] | ___________________________^ [INFO] [stderr] 92 | | "SELECT user_id FROM forge_refresh_tokens WHERE token_hash = $1", [INFO] [stderr] 93 | | hash [INFO] [stderr] 94 | | ) [INFO] [stderr] | |_____________^ [INFO] [stderr] | [INFO] [stderr] = note: this error originates in the macro `$crate::sqlx_macros::expand_query` which comes from the expansion of the macro `sqlx::query_scalar` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: set `DATABASE_URL` to use query macros online, or run `cargo sqlx prepare` to update the query cache [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/forge-core-0.7.3/src/job/context.rs:194:19 [INFO] [stderr] | [INFO] [stderr] 194 | let row = sqlx::query_scalar!( [INFO] [stderr] | ___________________^ [INFO] [stderr] 195 | | r#" [INFO] [stderr] 196 | | SELECT status [INFO] [stderr] 197 | | FROM forge_jobs [INFO] [stderr] ... | [INFO] [stderr] 200 | | self.job_id [INFO] [stderr] 201 | | ) [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this error originates in the macro `$crate::sqlx_macros::expand_query` which comes from the expansion of the macro `sqlx::query_scalar` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: set `DATABASE_URL` to use query macros online, or run `cargo sqlx prepare` to update the query cache [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/forge-core-0.7.3/src/workflow/context.rs:708:22 [INFO] [stderr] | [INFO] [stderr] 708 | let result = sqlx::query!( [INFO] [stderr] | ______________________^ [INFO] [stderr] 709 | | r#" [INFO] [stderr] 710 | | UPDATE forge_workflow_events [INFO] [stderr] 711 | | SET consumed_at = NOW(), consumed_by = $3 [INFO] [stderr] ... | [INFO] [stderr] 722 | | self.run_id [INFO] [stderr] 723 | | ) [INFO] [stderr] | |_________^ [INFO] [stderr] | [INFO] [stderr] = note: this error originates in the macro `$crate::sqlx_macros::expand_query` which comes from the expansion of the macro `sqlx::query` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: could not compile `forge-core` (lib) due to 4 previous errors [INFO] running `Command { std: "docker" "inspect" "e83e85ecd371dc7fda46c063cc802535d4e447e2762534101d13d099ef55371d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e83e85ecd371dc7fda46c063cc802535d4e447e2762534101d13d099ef55371d", kill_on_drop: false }` [INFO] [stdout] e83e85ecd371dc7fda46c063cc802535d4e447e2762534101d13d099ef55371d