File tree 7 files changed +29
-2
lines changed
src/tools/rustc-std-workspace
rustc-std-workspace-alloc
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"
3196
3196
source = " registry+https://github.com/rust-lang/crates.io-index"
3197
3197
checksum = " e5c9f15eec8235d7cb775ee6f81891db79b98fd54ba1ad8fae565b88ef1ae4e2"
3198
3198
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
+
3199
3211
[[package ]]
3200
3212
name = " rustc_abi"
3201
3213
version = " 0.0.0"
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ members = [
44
44
" src/tools/coverage-dump" ,
45
45
" src/tools/rustc-perf-wrapper" ,
46
46
" 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" ,
47
50
]
48
51
49
52
exclude = [
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustc-std-workspace-alloc"
3
- version = " 1.0.0 "
3
+ version = " 1.0.1 "
4
4
authors = [
" Alex Crichton <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = ' MIT/Apache-2.0'
7
7
description = ' workspace hack'
8
8
9
+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
10
+
9
11
[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 1
1
[package ]
2
2
name = " rustc-std-workspace-core"
3
- version = " 1.0.0 "
3
+ version = " 1.0.1 "
4
4
authors = [
" Alex Crichton <[email protected] >" ]
5
5
license = " MIT/Apache-2.0"
6
6
description = """
7
7
Explicitly empty crate for rust-lang/rust integration
8
8
"""
9
9
10
+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
11
+
10
12
[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
5
license = " MIT/Apache-2.0"
6
6
description = " Workaround for rustbuild"
7
7
8
+ repository = " https://github.com/rust-lang/rust/tree/master/src/tools/rustc-std-workspace"
9
+
8
10
[lib ]
9
11
name = " std"
10
12
You can’t perform that action at this time.
0 commit comments