about summary refs log tree commit diff
path: root/library/profiler_builtins/src
AgeCommit message (Collapse)AuthorLines
2024-11-24Make profiler_builtins `#![no_core]` instead of just `#![no_std]`Zalathar-1/+2
This crate doesn't contain any actual Rust code; it's just C/C++ code built and packaged in a Rust-friendly way.
2024-11-24Remove unnecessary `#![allow(unused_features)]`Zalathar-1/+0
2024-11-24Sort and separate lint/feature attributes in `profiler_builtins`Zalathar-4/+8
2023-08-23Bump cfg(bootstrap)Mark Rousskov-1/+1
2023-08-03Add `internal_features` lintNilstrieb-0/+1
It lints against features that are inteded to be internal to the compiler and standard library. Implements MCP #596. We allow `internal_features` in the standard library and compiler as those use many features and this _is_ the standard library from the "internal to the compiler and standard library" after all. Marking some features as internal wasn't exactly the most scientific approach, I just marked some mostly obvious features. While there is a categorization in the macro, it's not very well upheld (should probably be fixed in another PR). We always pass `-Ainternal_features` in the testsuite About 400 UI tests and several other tests use internal features. Instead of throwing the attribute on each one, just always allow them. There's nothing wrong with testing internal features^^
2022-06-03Fully stabilize NLLJack Huey-1/+0
2020-07-27mv std libs to library/mark-0/+11