diff --git a/docs/src/flatten.md b/docs/src/flatten.md index 88d5319777..b656e0eee7 100644 --- a/docs/src/flatten.md +++ b/docs/src/flatten.md @@ -1363,7 +1363,8 @@ str: The name of a registerable rust_analyzer_toolchain. rust_register_toolchains(dev_components, edition, allocator_library, global_allocator_library, register_toolchains, rustfmt_version, rust_analyzer_version, sha256s, extra_target_triples, extra_rustc_flags, extra_exec_rustc_flags, urls, - versions, aliases, hub_name, compact_windows_names) + versions, aliases, hub_name, compact_windows_names, toolchain_triples, + extra_toolchain_infos) Emits a default set of toolchains for Linux, MacOS, and Freebsd @@ -1404,6 +1405,8 @@ See `load_arbitrary_tool` in `@rules_rust//rust:repositories.bzl` for more detai | aliases | A mapping of "full" repository name to another name to use instead. | `{}` | | hub_name | The name of the bzlmod hub repository for toolchains. | `None` | | compact_windows_names | Whether or not to produce compact repository names for windows toolchains. This is to avoid MAX_PATH issues. | `True` | +| toolchain_triples |

-

| `{"aarch64-apple-darwin": "rust_darwin_aarch64", "aarch64-pc-windows-msvc": "rust_windows_aarch64", "aarch64-unknown-linux-gnu": "rust_linux_aarch64", "s390x-unknown-linux-gnu": "rust_linux_s390x", "x86_64-apple-darwin": "rust_darwin_x86_64", "x86_64-pc-windows-msvc": "rust_windows_x86_64", "x86_64-unknown-freebsd": "rust_freebsd_x86_64", "x86_64-unknown-linux-gnu": "rust_linux_x86_64"}` | +| extra_toolchain_infos |

-

| `None` | diff --git a/docs/src/rust_repositories.md b/docs/src/rust_repositories.md index c3c259e434..e39789d700 100644 --- a/docs/src/rust_repositories.md +++ b/docs/src/rust_repositories.md @@ -177,7 +177,8 @@ str: The name of a registerable rust_analyzer_toolchain. rust_register_toolchains(dev_components, edition, allocator_library, global_allocator_library, register_toolchains, rustfmt_version, rust_analyzer_version, sha256s, extra_target_triples, extra_rustc_flags, extra_exec_rustc_flags, urls, - versions, aliases, hub_name, compact_windows_names) + versions, aliases, hub_name, compact_windows_names, toolchain_triples, + extra_toolchain_infos) Emits a default set of toolchains for Linux, MacOS, and Freebsd @@ -218,6 +219,8 @@ See `load_arbitrary_tool` in `@rules_rust//rust:repositories.bzl` for more detai | aliases | A mapping of "full" repository name to another name to use instead. | `{}` | | hub_name | The name of the bzlmod hub repository for toolchains. | `None` | | compact_windows_names | Whether or not to produce compact repository names for windows toolchains. This is to avoid MAX_PATH issues. | `True` | +| toolchain_triples |

-

| `{"aarch64-apple-darwin": "rust_darwin_aarch64", "aarch64-pc-windows-msvc": "rust_windows_aarch64", "aarch64-unknown-linux-gnu": "rust_linux_aarch64", "s390x-unknown-linux-gnu": "rust_linux_s390x", "x86_64-apple-darwin": "rust_darwin_x86_64", "x86_64-pc-windows-msvc": "rust_windows_x86_64", "x86_64-unknown-freebsd": "rust_freebsd_x86_64", "x86_64-unknown-linux-gnu": "rust_linux_x86_64"}` | +| extra_toolchain_infos |

-

| `None` |