summaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/rustdoc.py
AgeCommit message (Collapse)Author
2025-12-04implement --env-set parameter manually in rustdoc scriptPaolo Bonzini
Rustdoc does not yet support the --env-set parameter, change the environment directly instead. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2025-12-04Remove --crate-type parameter filter from the rustdoc script.John Turner
Filtering out this flag causes the rustdoc script to fail when building docs for proc-macro crates. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2025-11-19compilers: Remove Environment parameter from RustCompiler.get_rust_toolDylan Baker
2025-08-26rustdoc: skip --crate-type optionPaolo Bonzini
--crate-type is accepted by recent versions of rustdoc, but it is not used by it and not listed in the documentation[1]. Remove it for compatibility with old versions of Rust. [1] https://doc.rust-lang.org/rustdoc/command-line-arguments.html Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2025-04-02rust: new target rustdocPaolo Bonzini
Another rust tool, another rough copy of the code to run clippy. Apart from the slightly different command lines, the output is in a directory and test targets are skipped. Knowing the output directory can be useful, so print that on successful execution of rustdoc. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>