-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- make rustc-std-workspace-core/alloc re-exports of their underlying crates, like std = cleanup manifests
- Loading branch information
Showing
9 changed files
with
40 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
See `library/rustc-std-workspace-core/README.md` for context. | ||
See [`library/rustc-std-workspace-core/README.md`](../../library/rustc-std-workspace-core/README.md) for context. | ||
|
||
These are the crates.io versions of these crates, as opposed to the versions | ||
in `library` which are the ones used inside the rustc workspace. |
10 changes: 6 additions & 4 deletions
10
src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
[package] | ||
name = "rustc-std-workspace-alloc" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Alex Crichton <alex@alexcrichton.com>"] | ||
edition = "2018" | ||
edition = "2021" | ||
license = 'MIT/Apache-2.0' | ||
description = 'workspace hack' | ||
description = """ | ||
crate for integration of crates.io crates into rust-lang/rust standard library workspace | ||
""" | ||
|
||
[dependencies] | ||
repository = "https://github.com/rust-lang/rust/tree/master/src/rustc-std-workspace" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#![no_std] | ||
extern crate alloc as the_alloc; | ||
pub use the_alloc::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
[package] | ||
name = "rustc-std-workspace-core" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Alex Crichton <alex@alexcrichton.com>"] | ||
edition = "2021" | ||
license = "MIT/Apache-2.0" | ||
description = """ | ||
Explicitly empty crate for rust-lang/rust integration | ||
crate for integration of crates.io crates into rust-lang/rust standard library workspace | ||
""" | ||
|
||
[dependencies] | ||
repository = "https://github.com/rust-lang/rust/tree/master/src/rustc-std-workspace" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#![no_std] | ||
extern crate core as the_core; | ||
pub use the_core::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters