emilk / eframe_template

The easy way to make a Rust app with a GUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error[E0710]: an unknown tool name found in scoped lint: `rustdoc::private_intra_doc_links`

wyhinton opened this issue · comments

Hello,

I'm getting 4 errors when using this template:

error[E0710]: an unknown tool name found in scoped lint: `rustdoc::broken_intra_doc_links`
  --> C:\Users\Primary User\.cargo\registry\src\github.com-1ecc6299db9ec823\emath-0.12.0\src\lib.rs:14:5
   |
14 |     rustdoc::broken_intra_doc_links,
   |     ^^^^^^^

error[E0710]: an unknown tool name found in scoped lint: `rustdoc::invalid_codeblock_attributes`
  --> C:\Users\Primary User\.cargo\registry\src\github.com-1ecc6299db9ec823\emath-0.12.0\src\lib.rs:15:5
   |
15 |     rustdoc::invalid_codeblock_attributes,
   |     ^^^^^^^

error[E0710]: an unknown tool name found in scoped lint: `rustdoc::missing_crate_level_docs`
  --> C:\Users\Primary User\.cargo\registry\src\github.com-1ecc6299db9ec823\emath-0.12.0\src\lib.rs:16:5
   |
16 |     rustdoc::missing_crate_level_docs,
   |     ^^^^^^^

error[E0710]: an unknown tool name found in scoped lint: `rustdoc::private_intra_doc_links`
  --> C:\Users\Primary User\.cargo\registry\src\github.com-1ecc6299db9ec823\emath-0.12.0\src\lib.rs:17:5
   |
17 |     rustdoc::private_intra_doc_links
   |     ^^^^^^^

Steps to reproduce:

  • Create Template
  • Clone the repo I just made via Create Template
  • cd egui_test
  • cargo run --release

OS: Windows 10

Let me know if you need any more info about my system/rust setup.

Updating via rustup and running with +nightly fixed the issue. Might be good to specify a minium rustc version required to use the template?

Minimum version is always latest version of rust. It's documented at https://docs.rs/egui/ but yeah, it should be documented in this repo too.