From 9d6c94ded80faa925d098c07996a6f8cb3c8d0c1 Mon Sep 17 00:00:00 2001 From: Matt Stark Date: Thu, 19 Oct 2023 12:35:24 +1100 Subject: [PATCH] Regenerate documentation --- docs/flatten.md | 8 +++++--- docs/providers.md | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/flatten.md b/docs/flatten.md index b0b4d7f8e3..3728119ac6 100644 --- a/docs/flatten.md +++ b/docs/flatten.md @@ -1449,8 +1449,8 @@ A toolchain for [rustfmt](https://rust-lang.github.io/rustfmt/)
 CrateInfo(aliases, compile_data, compile_data_targets, data, deps, edition, is_test, metadata, name,
-          output, owner, proc_macro_deps, root, rustc_env, rustc_env_files, srcs, type,
-          wrapped_crate_type)
+          output, owner, proc_macro_deps, root, rustc_env, rustc_env_files, rustc_output,
+          rustc_rmeta_output, srcs, type, wrapped_crate_type)
 
A provider containing general Crate information. @@ -1467,7 +1467,7 @@ A provider containing general Crate information. | deps | depset[DepVariantInfo]: This crate's (rust or cc) dependencies' providers. | | edition | str: The edition of this crate. | | is_test | bool: If the crate is being compiled in a test context | -| metadata | File: The rmeta file produced for this crate. It is optional. | +| metadata | File: The output from rustc from producing the output file. It is optional. | | name | str: The name of this crate. | | output | File: The output File that will be produced, depends on crate type. | | owner | Label: The label of the target that produced this CrateInfo | @@ -1475,6 +1475,8 @@ A provider containing general Crate information. | root | File: The source File entrypoint to this crate, eg. lib.rs | | rustc_env | Dict[String, String]: Additional "key": "value" environment variables to set for rustc. | | rustc_env_files | [File]: Files containing additional environment variables to set for rustc. | +| rustc_output | File: The output from rustc from producing the output file. It is optional. | +| rustc_rmeta_output | File: The rmeta file produced for this crate. It is optional. | | srcs | depset[File]: All source Files that are part of the crate. | | type | str: The type of this crate (see [rustc --crate-type](https://doc.rust-lang.org/rustc/command-line-arguments.html#--crate-type-a-list-of-types-of-crates-for-the-compiler-to-emit)). | | wrapped_crate_type | str, optional: The original crate type for targets generated using a previously defined crate (typically tests using the rust_test::crate attribute) | diff --git a/docs/providers.md b/docs/providers.md index c97ad9bce9..87a37924c1 100644 --- a/docs/providers.md +++ b/docs/providers.md @@ -11,8 +11,8 @@
 CrateInfo(aliases, compile_data, compile_data_targets, data, deps, edition, is_test, metadata, name,
-          output, owner, proc_macro_deps, root, rustc_env, rustc_env_files, srcs, type,
-          wrapped_crate_type)
+          output, owner, proc_macro_deps, root, rustc_env, rustc_env_files, rustc_output,
+          rustc_rmeta_output, srcs, type, wrapped_crate_type)
 
A provider containing general Crate information. @@ -29,7 +29,7 @@ A provider containing general Crate information. | deps | depset[DepVariantInfo]: This crate's (rust or cc) dependencies' providers. | | edition | str: The edition of this crate. | | is_test | bool: If the crate is being compiled in a test context | -| metadata | File: The rmeta file produced for this crate. It is optional. | +| metadata | File: The output from rustc from producing the output file. It is optional. | | name | str: The name of this crate. | | output | File: The output File that will be produced, depends on crate type. | | owner | Label: The label of the target that produced this CrateInfo | @@ -37,6 +37,8 @@ A provider containing general Crate information. | root | File: The source File entrypoint to this crate, eg. lib.rs | | rustc_env | Dict[String, String]: Additional "key": "value" environment variables to set for rustc. | | rustc_env_files | [File]: Files containing additional environment variables to set for rustc. | +| rustc_output | File: The output from rustc from producing the output file. It is optional. | +| rustc_rmeta_output | File: The rmeta file produced for this crate. It is optional. | | srcs | depset[File]: All source Files that are part of the crate. | | type | str: The type of this crate (see [rustc --crate-type](https://doc.rust-lang.org/rustc/command-line-arguments.html#--crate-type-a-list-of-types-of-crates-for-the-compiler-to-emit)). | | wrapped_crate_type | str, optional: The original crate type for targets generated using a previously defined crate (typically tests using the rust_test::crate attribute) |