about summary refs log tree commit diff
path: root/library/rustc-std-workspace-alloc
diff options
context:
space:
mode:
authormark <markm@cs.wisc.edu>2020-06-11 21:31:49 -0500
committermark <markm@cs.wisc.edu>2020-07-27 19:51:13 -0500
commit2c31b45ae878b821975c4ebd94cc1e49f6073fd0 (patch)
tree14f64e683e3f64dcbcfb8c2c7cb45ac7592e6e09 /library/rustc-std-workspace-alloc
parent9be8ffcb0206fc1558069a7b4766090df7877659 (diff)
downloadrust-2c31b45ae878b821975c4ebd94cc1e49f6073fd0.tar.gz
rust-2c31b45ae878b821975c4ebd94cc1e49f6073fd0.zip
mv std libs to library/
Diffstat (limited to 'library/rustc-std-workspace-alloc')
-rw-r--r--library/rustc-std-workspace-alloc/Cargo.toml15
-rw-r--r--library/rustc-std-workspace-alloc/lib.rs9
2 files changed, 24 insertions, 0 deletions
diff --git a/library/rustc-std-workspace-alloc/Cargo.toml b/library/rustc-std-workspace-alloc/Cargo.toml
new file mode 100644
index 00000000000..810197afd31
--- /dev/null
+++ b/library/rustc-std-workspace-alloc/Cargo.toml
@@ -0,0 +1,15 @@
+[package]
+name = "rustc-std-workspace-alloc"
+version = "1.99.0"
+authors = ["Alex Crichton <alex@alexcrichton.com>"]
+license = 'MIT OR Apache-2.0'
+description = """
+Hack for the compiler's own build system
+"""
+edition = "2018"
+
+[lib]
+path = "lib.rs"
+
+[dependencies]
+alloc = { path = "../alloc" }
diff --git a/library/rustc-std-workspace-alloc/lib.rs b/library/rustc-std-workspace-alloc/lib.rs
new file mode 100644
index 00000000000..c38a8d2f204
--- /dev/null
+++ b/library/rustc-std-workspace-alloc/lib.rs
@@ -0,0 +1,9 @@
+#![feature(no_core)]
+#![no_core]
+
+// See rustc-std-workspace-core for why this crate is needed.
+
+// Rename the crate to avoid conflicting with the alloc module in liballoc.
+extern crate alloc as foo;
+
+pub use foo::*;