diff options
| author | Daniil Belov <70999565+BelovDV@users.noreply.github.com> | 2023-01-26 17:10:13 +0300 |
|---|---|---|
| committer | BelovDV <70999565+BelovDV@users.noreply.github.com> | 2023-02-10 12:51:12 +0300 |
| commit | 601fc8b36b1962285e371cf3c54eeb3b1b9b3a74 (patch) | |
| tree | 7442411b8396d87173d00ba1adb5f77dcd275d38 /compiler/rustc_feature/src | |
| parent | dffea43fc1102bdfe16d88ed412c23d4f0f08d9d (diff) | |
| download | rust-601fc8b36b1962285e371cf3c54eeb3b1b9b3a74.tar.gz rust-601fc8b36b1962285e371cf3c54eeb3b1b9b3a74.zip | |
[link] enable packed bundled lib in non stable cases
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index 323f5a368fc..21d211eefbe 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -164,6 +164,8 @@ declare_features! ( (active, multiple_supertrait_upcastable, "CURRENT_RUSTC_VERSION", None, None), /// Allows using `#[omit_gdb_pretty_printer_section]`. (active, omit_gdb_pretty_printer_section, "1.5.0", None, None), + /// Allows using `+bundled,+whole-archive` native libs. + (active, packed_bundled_libs, "1.67.0", None, None), /// Allows using `#[prelude_import]` on glob `use` items. (active, prelude_import, "1.2.0", None, None), /// Used to identify crates that contain the profiler runtime. |
