diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-12-19 18:11:31 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-07-07 03:23:00 +0200 |
| commit | 345ba505ece1d0b9f929d43bd7dc37036ae3c580 (patch) | |
| tree | ff4cf50193a0b23ddf3479129006368ea1332be4 /src/librustc_data_structures/lib.rs | |
| parent | b0bd5f236d9bea38b8c9048f379fec179b09984c (diff) | |
| download | rust-345ba505ece1d0b9f929d43bd7dc37036ae3c580.tar.gz rust-345ba505ece1d0b9f929d43bd7dc37036ae3c580.zip | |
rustc: Remove `dylib` crate type from most rustc crates
Now that procedural macros no longer link transitively to libsyntax, this shouldn't be needed any more! This commit is an experiment in removing all dynamic libraries from rustc except for librustc_driver itself. Let's see how far we can get with that!
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs index 38dfb675237..b479643a5e8 100644 --- a/src/librustc_data_structures/lib.rs +++ b/src/librustc_data_structures/lib.rs @@ -38,10 +38,6 @@ extern crate libc; #[macro_use] extern crate cfg_if; -// See librustc_cratesio_shim/Cargo.toml for a comment explaining this. -#[allow(unused_extern_crates)] -extern crate rustc_cratesio_shim; - pub use rustc_serialize::hex::ToHex; #[inline(never)] |
