File tree 9 files changed +40
-12
lines changed
library/rustc-std-workspace-core
rustc-std-workspace-alloc
9 files changed +40
-12
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 @@ -3,6 +3,9 @@ resolver = "2"
3
3
members = [
4
4
" compiler/rustc" ,
5
5
" src/etc/test-float-parse" ,
6
+ " src/rustc-std-workspace/rustc-std-workspace-core" ,
7
+ " src/rustc-std-workspace/rustc-std-workspace-alloc" ,
8
+ " src/rustc-std-workspace/rustc-std-workspace-std" ,
6
9
" src/rustdoc-json-types" ,
7
10
" src/tools/build_helper" ,
8
11
" src/tools/cargotest" ,
Original file line number Diff line number Diff line change @@ -27,3 +27,6 @@ it'll look like
27
27
28
28
when Cargo invokes the compiler, satisfying the implicit ` extern crate core `
29
29
directive injected by the compiler.
30
+
31
+ The sources for the crates.io version can be found in
32
+ [ ` src/rustc-std-workspace ` ] ( ../../src/rustc-std-workspace ) .
Original file line number Diff line number Diff line change 1
- See ` library/rustc-std-workspace-core/README.md ` for context.
1
+ See [ ` library/rustc-std-workspace-core/README.md ` ] ( ../../library/rustc-std-workspace-core/README.md ) for context.
2
2
3
3
These are the crates.io versions of these crates, as opposed to the versions
4
4
in ` library ` which are the ones used inside the rustc workspace.
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
- edition = " 2018 "
5
+ edition = " 2021 "
6
6
license = ' MIT/Apache-2.0'
7
- description = ' workspace hack'
7
+ description = """
8
+ crate for integration of crates.io crates into rust-lang/rust standard library workspace
9
+ """
8
10
9
- [ dependencies ]
11
+ repository = " https://github.com/rust-lang/rust/tree/master/src/rustc-std-workspace "
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
+ edition = " 2021"
5
6
license = " MIT/Apache-2.0"
6
7
description = """
7
- Explicitly empty crate for rust-lang/rust integration
8
+ crate for integration of crates.io crates into rust-lang/rust standard library workspace
8
9
"""
9
10
10
- [ dependencies ]
11
+ repository = " https://github.com/rust-lang/rust/tree/master/src/rustc-std-workspace "
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 2
2
name = " rustc-std-workspace-std"
3
3
version = " 1.0.1"
4
4
authors = [
" Alex Crichton <[email protected] >" ]
5
+ edition = " 2021"
5
6
license = " MIT/Apache-2.0"
6
- description = " Workaround for rustbuild"
7
-
8
- [lib ]
9
- name = " std"
7
+ description = """
8
+ crate for integration of crates.io crates into rust-lang/rust standard library workspace
9
+ """
10
10
11
+ repository = " https://github.com/rust-lang/rust/tree/master/src/rustc-std-workspace"
You can’t perform that action at this time.
0 commit comments