From c1b4d6211dd54610f73a9577f621123987bf75cf Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 19 Jul 2019 13:06:31 -0700 Subject: [PATCH] rustc: Compile the `fmt_macros` crate as an rlib I think this was left out by accident from the "convert everything to rlibs" commit, there's no need for this to be a dylib just as everything else doesn't need to be a dylib! --- src/libfmt_macros/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libfmt_macros/Cargo.toml b/src/libfmt_macros/Cargo.toml index a95193b85952f..82a9e34c065b1 100644 --- a/src/libfmt_macros/Cargo.toml +++ b/src/libfmt_macros/Cargo.toml @@ -7,7 +7,6 @@ edition = "2018" [lib] name = "fmt_macros" path = "lib.rs" -crate-type = ["dylib"] [dependencies] syntax_pos = { path = "../libsyntax_pos" }