]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/lib.rs
Auto merge of #61817 - eddyb:begone-gcx-attempt-2, r=oli-obk
[rust.git] / src / librustc_target / lib.rs
1 //! Some stuff used by rustc that doesn't have many dependencies
2 //!
3 //! Originally extracted from rustc::back, which was nominally the
4 //! compiler 'backend', though LLVM is rustc's backend, so rustc_target
5 //! is really just odds-and-ends relating to code gen and linking.
6 //! This crate mostly exists to make rustc smaller, so we might put
7 //! more 'stuff' here in the future. It does not have a dependency on
8 //! LLVM.
9
10 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
11
12 #![feature(box_syntax)]
13 #![feature(nll)]
14 #![feature(rustc_attrs)]
15 #![feature(slice_patterns)]
16 #![feature(step_trait)]
17
18 #![deny(rust_2018_idioms)]
19 #![deny(internal)]
20 #![deny(unused_lifetimes)]
21
22 #[macro_use] extern crate log;
23
24 #[allow(unused_extern_crates)]
25 extern crate serialize as rustc_serialize; // used by deriving
26
27 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
28 #[allow(unused_extern_crates)]
29 extern crate rustc_cratesio_shim;
30
31 #[macro_use]
32 extern crate rustc_data_structures;
33
34 pub mod abi;
35 pub mod spec;