Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
[build]
# TODO: unfreeze toolchain
# error[E0557]: feature has been removed
# --> /opt/buildhome/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.13/src/lib.rs:89:29
# |
# 89 | #![cfg_attr(docsrs, feature(doc_auto_cfg))]
# | ^^^^^^^^^^^^ feature has been removed
# |
# = note: removed in 1.58.0; see <https://github.com/rust-lang/rust/pull/138907; for more information
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed in one point fifty eight? That's ancient.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This version also surprised me, so I checked the PR in the error message, it was merged two days ago: rust-lang/rust@c0ee51f.

Copy link
Member

@taiki-e taiki-e Sep 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just a mistake in the error message and will be fixed in the next nightly: rust-lang/rust#147123

# = note: merged into `doc_cfg`
command = """
rustup install nightly --profile minimal && cargo doc --no-deps --all-features
rustup install nightly-2025-01-25 --profile minimal && cargo doc --no-deps --all-features
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this same version as what's used for docs builds?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the same version in ci.yml, there are also some cargo docs in this yml.

rust_nightly: nightly-2025-01-25

"""
publish = "target/doc"

Expand Down
Loading