From d60293a8cdeaa5e3566293763ad36492ae8aa80e Mon Sep 17 00:00:00 2001 From: Brennan Kinney <5098581+polarathene@users.noreply.github.com> Date: Thu, 26 Feb 2026 14:12:40 +1300 Subject: [PATCH] docs: `Cargo.toml` - Revise description of `core` dep --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6750c36..7ecdde2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,10 +29,10 @@ doctest = false libc = { version = "0.2", default-features = false } [dependencies] -# For more information on these dependencies see rust-lang/rust's -# `src/tools/rustc-std-workspace` folder -core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' } cfg-if = "1.0" +# This is an internal dep for supporting the nightly toolchain option `-Z build-std`: +# https://github.com/rust-lang/rust/blob/main/library/rustc-std-workspace-core/README.md +core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' } [target.'cfg(target_os = "windows")'.dependencies.windows-sys] version = ">=0.52.0, <=0.61.*"