about summary refs log tree commit diff
path: root/library/rustc-std-workspace-core
AgeCommit message (Collapse)AuthorLines
2025-07-31Use `core` via `rustc-std-workspace-core` in `library/panic*`Trevor Gross-0/+6
The three panic-related library crates need to have access to `core`, and `compiler-builtins` needs to be in the crate graph. Rather than specifying both dependencies, switch these crates to use `rustc-std-workspace-core` which already does this. This means there is now a single place that the `compiler-builtins` dependency needs to get configured, for everything other than `alloc` and `std`.
2025-07-24Disable unit tests for stdlib packages that don't contain anybjorn3-0/+3
2025-06-30make compiler_builtins a private dependencyJeremy Smart-2/+6
2025-06-08Use the in-tree `compiler-builtins`Trevor Gross-0/+5
Many of `std`'s dependency have a dependency on the crates.io `compiler-builtins` when used with the feature `rustc-std-workspace-core`. Use a Cargo patch to select the in-tree version instead. `compiler-builtins` is also added as a dependency of `rustc-std-workspace-core` so these crates can remove their crates.io dependency in the future.
2025-03-11Migrated the rustc-std-workspace crates to Rust 2024Eric Huss-1/+1
2024-11-04update rustc-std-workspace cratesRalf Jung-0/+3
- make rustc-std-workspace-core/alloc re-exports of their underlying crates, like std = cleanup manifests
2021-12-23Switch all libraries to the 2021 editionDeadbeef-1/+1
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-1/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2020-12-20Fix rustc-std-workspace-core documentationDaniel Le-6/+6
2020-07-27mv std libs to library/mark-0/+48