File tree Expand file tree Collapse file tree 7 files changed +29
-2
lines changed
src/tools/rustc-std-workspace
rustc-std-workspace-alloc Expand file tree Collapse file tree 7 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -3196,6 +3196,18 @@ version = "0.1.0"
31963196source = " registry+https://github.com/rust-lang/crates.io-index"
31973197checksum = " e5c9f15eec8235d7cb775ee6f81891db79b98fd54ba1ad8fae565b88ef1ae4e2"
31983198
3199+ [[package ]]
3200+ name = " rustc-std-workspace-alloc"
3201+ version = " 1.0.1"
3202+
3203+ [[package ]]
3204+ name = " rustc-std-workspace-core"
3205+ version = " 1.0.1"
3206+
3207+ [[package ]]
3208+ name = " rustc-std-workspace-std"
3209+ version = " 1.0.1"
3210+
31993211[[package ]]
32003212name = " rustc_abi"
32013213version = " 0.0.0"
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ members = [
4444 " src/tools/coverage-dump" ,
4545 " src/tools/rustc-perf-wrapper" ,
4646 " src/tools/wasm-component-ld" ,
47+ " src/tools/rustc-std-workspace/rustc-std-workspace-core" ,
48+ " src/tools/rustc-std-workspace/rustc-std-workspace-alloc" ,
49+ " src/tools/rustc-std-workspace/rustc-std-workspace-std" ,
4750]
4851
4952exclude = [
Original file line number Diff line number Diff line change 11[package ]
22name = " rustc-std-workspace-alloc"
3- version = " 1.0.0 "
3+ version = " 1.0.1 "
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
55edition = " 2018"
66license = ' MIT/Apache-2.0'
77description = ' workspace hack'
88
9+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
10+
911[dependencies ]
Original file line number Diff line number Diff line change 1+ #![ no_std]
2+ extern crate alloc as the_alloc;
3+ pub use the_alloc:: * ;
Original file line number Diff line number Diff line change 11[package ]
22name = " rustc-std-workspace-core"
3- version = " 1.0.0 "
3+ version = " 1.0.1 "
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
55license = " MIT/Apache-2.0"
66description = """
77Explicitly empty crate for rust-lang/rust integration
88"""
99
10+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
11+
1012[dependencies ]
Original file line number Diff line number Diff line change 1+ #![ no_std]
2+ extern crate core as the_core;
3+ pub use the_core:: * ;
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
55license = " MIT/Apache-2.0"
66description = " Workaround for rustbuild"
77
8+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
9+
810[lib ]
911name = " std"
1012
You can’t perform that action at this time.
0 commit comments