diff options
| author | Ralf Jung <post@ralfj.de> | 2024-11-03 22:30:16 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-11-04 07:45:15 +0100 |
| commit | b12745863e409420e5f7650eb0af670c4060acad (patch) | |
| tree | ff1f6e10f8b05bd7cac67522dd9382e9ec276e94 /src/rustc-std-workspace/rustc-std-workspace-alloc | |
| parent | 5c6f27b1e064af7c0d922eb00b5494fc6ca81b82 (diff) | |
| download | rust-b12745863e409420e5f7650eb0af670c4060acad.tar.gz rust-b12745863e409420e5f7650eb0af670c4060acad.zip | |
update rustc-std-workspace crates
- make rustc-std-workspace-core/alloc re-exports of their underlying crates, like std = cleanup manifests
Diffstat (limited to 'src/rustc-std-workspace/rustc-std-workspace-alloc')
| -rw-r--r-- | src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml | 10 | ||||
| -rw-r--r-- | src/rustc-std-workspace/rustc-std-workspace-alloc/src/lib.rs | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml b/src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml index 777d57d2011..1a8ebdcfeae 100644 --- a/src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml +++ b/src/rustc-std-workspace/rustc-std-workspace-alloc/Cargo.toml @@ -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" diff --git a/src/rustc-std-workspace/rustc-std-workspace-alloc/src/lib.rs b/src/rustc-std-workspace/rustc-std-workspace-alloc/src/lib.rs index e69de29bb2d..938b8bb29b6 100644 --- a/src/rustc-std-workspace/rustc-std-workspace-alloc/src/lib.rs +++ b/src/rustc-std-workspace/rustc-std-workspace-alloc/src/lib.rs @@ -0,0 +1,3 @@ +#![no_std] +extern crate alloc as the_alloc; +pub use the_alloc::*; |
